.Why-item{
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 300px;
    border-radius: 16px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 174, 231, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 174, 231, 0.6); }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce-in {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    75% { transform: translateY(5px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fade-in 1s ease-out forwards;
}

.animate-scale-in {
    animation: scale-in 0.6s ease-out forwards;
}

.animate-bounce-in {
    animation: bounce-in 0.6s ease-out forwards;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.animate-wave {
    animation: wave 2s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }
.services__item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__item:hover {
    transform: translateY(-10px);
}

.services__inner {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 231, 0.1), transparent);
    transition: left 0.5s ease;
}

.services__item:hover .services__inner {
    box-shadow: 0 20px 40px rgba(0, 174, 231, 0.2);
    border-color: rgba(0, 174, 231, 0.3);
}

.services__item:hover .services__inner::before {
    left: 100%;
}

.services__inner .thumb {
    transition: transform 0.4s ease;
}

.services__item:hover .services__inner .thumb {
    transform: scale(1.1);
}

.how-step-item{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease-out;
}

.js-enabled .how-step-item {
    opacity: 0;
    transform: translateX(-30px);
}

.js-enabled .how-step-item.reveal {
    opacity: 1;
    transform: translateX(0);
}
.how-step-num{
    background: linear-gradient(to bottom, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 174, 231, 0.3);
}

.how-step-item:hover .how-step-num {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(0, 174, 231, 0.5);
}

.how-step-item.reveal .how-step-num {
    animation: bounce-in 0.5s ease-out forwards;
}
.how-step-title{
    color: black;
    font-weight: 600;
    margin-bottom: 12px;
}
.about__innerimg {
    transition: transform 0.4s ease;
}

.about__innerimg:hover {
    transform: scale(1.05);
}

.about__innerimg img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__innerimg:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 174, 231, 0.2);
}

.foot-bottom-all{
    margin-top: 35px;
    text-align: center;
}
.min-height-p{
    min-height: 125px;
    margin-top: 15px;
}
.title-top-h{
    margin-top: 10px;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.header__menu nav > ul li {
    position: relative;
}

.header__menu nav > ul li a {
    position: relative;
    transition: all 0.3s ease;
}

.header__menu nav > ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header__menu nav > ul li:hover a::before {
    width: 80%;
}

.header__menu nav > ul li:hover a {
    transform: translateY(-2px);
}

.header__menu nav > ul li.active2 a::before {
    width: 80%;
}

.header__logo {
    transition: transform 0.3s ease;
}

.header__logo:hover {
    transform: scale(1.05);
}

.header__logo a {
    display: inline-block;
    position: relative;
}

.header__logo a::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(0, 235, 205, 0.3), rgba(0, 174, 231, 0.3), rgba(0, 235, 205, 0.3));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
}

.header__logo:hover a::before {
    opacity: 1;
    transform: rotate(5deg);
}

.header__logo img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.header__logo:hover img {
    transform: rotate(-3deg) scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(0, 174, 231, 0.4));
}

@keyframes logo-pulse {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(0, 174, 231, 0)); }
    50% { filter: drop-shadow(0 0 20px rgba(0, 174, 231, 0.6)); }
}

.header__logo:hover img {
    animation: logo-pulse 1.5s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(to right, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.8em;
    margin-left: 5px;
    display: inline-block;
    text-transform: none !important;
}

.decorative-lines {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    height: 24px;
}

.decorative-lines .line {
    width: 3px;
    background: linear-gradient(to bottom, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    border-radius: 2px;
    animation: line-pulse 2s ease-in-out infinite;
}

.decorative-lines .line-1 {
    height: 100%;
    animation-delay: 0s;
}

.decorative-lines .line-2 {
    height: 75%;
    animation-delay: 0.2s;
}

.decorative-lines .line-3 {
    height: 50%;
    animation-delay: 0.4s;
}

.decorative-lines .line-4 {
    height: 85%;
    animation-delay: 0.6s;
}

@keyframes line-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.section__title h3,
.section__title h3 a,
h3,
a h3 {
    text-transform: none !important;
}

.about-banner {
    padding: calc(1rem + 4vw) 0 !important;
}

@media (min-width: 992px) {
    .about-banner {
        padding: calc(1.5rem + 6vw) 0 !important;
    }
}

@media (min-width: 1200px) {
    .about-banner {
        padding: 5rem 0 !important;
    }
}

.banner-right-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.banner-right-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.about-banner-float {
    animation: about-float 6s ease-in-out infinite, about-sway 4s ease-in-out infinite;
}

@keyframes about-float {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(-10px);
    }
    75% {
        transform: translateY(-25px);
    }
}

@keyframes about-sway {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

.about-banner-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 235, 205, 0.4) 0%, rgba(0, 174, 231, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: about-glow-pulse 3s ease-in-out infinite, about-glow-move 8s ease-in-out infinite;
}

@keyframes about-glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.8;
    }
}

@keyframes about-glow-move {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(-5px, 5px);
    }
    75% {
        transform: translate(5px, 10px);
    }
}

.about-banner-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.about-banner-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    border-radius: 50%;
    animation: about-particle-float 4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 235, 205, 0.6);
}

.about-banner-particles .p1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.about-banner-particles .p2 {
    top: 40%;
    right: 10%;
    animation-delay: 0.5s;
    width: 6px;
    height: 6px;
}

.about-banner-particles .p3 {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
    width: 10px;
    height: 10px;
}

.about-banner-particles .p4 {
    top: 30%;
    right: 40%;
    animation-delay: 1.5s;
    width: 5px;
    height: 5px;
}

.about-banner-particles .p5 {
    top: 70%;
    right: 25%;
    animation-delay: 2s;
    width: 7px;
    height: 7px;
}

@keyframes about-particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.7);
        opacity: 0.7;
    }
    75% {
        transform: translateY(20px) translateX(10px) scale(1.2);
        opacity: 0.9;
    }
}

@media (max-width: 991px) {
    .banner-right-image {
        min-height: 250px;
    }
    
    .about-banner-glow {
        width: 200px;
        height: 200px;
    }
}

.values-section {
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 50%, #f8fcff 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1), transparent);
}

.values-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.values-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 174, 231, 0.1);
    box-shadow: 0 4px 15px rgba(0, 174, 231, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 174, 231, 0.15);
    border-color: rgba(0, 174, 231, 0.25);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon img {
    transform: scale(1.1) rotate(5deg);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 235, 205, 0.2) 0%, rgba(0, 174, 231, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.value-card:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: rgba(0, 174, 231, 1);
}

.value-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.value-card:hover .value-desc {
    color: #475569;
}

.value-card-1 { animation: card-fade-in 0.6s ease-out forwards; animation-delay: 0.1s; opacity: 0; }
.value-card-2 { animation: card-fade-in 0.6s ease-out forwards; animation-delay: 0.2s; opacity: 0; }
.value-card-3 { animation: card-fade-in 0.6s ease-out forwards; animation-delay: 0.3s; opacity: 0; }
.value-card-4 { animation: card-fade-in 0.6s ease-out forwards; animation-delay: 0.4s; opacity: 0; }

@keyframes card-fade-in {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 235, 205, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.value-card:hover::after {
    bottom: -30%;
    right: -30%;
}

@media (max-width: 767px) {
    .values-title { font-size: 1.75rem; }
    .value-card { padding: 25px; }
    .value-icon { width: 60px; height: 60px; margin-bottom: 20px; }
}

.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 50%, #ffffff 100%);
    position: relative;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    text-align: left;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 174, 231, 0.1);
    transition: all 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 231, 0.1);
    border-color: rgba(0, 174, 231, 0.2);
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.contact-icon img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.contact-item:hover .contact-icon img {
    transform: scale(1.1);
}

.icon-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 235, 205, 0.2), rgba(0, 174, 231, 0.2));
    z-index: 1;
}

.contact-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 174, 231, 0.1);
    box-shadow: 0 4px 20px rgba(0, 174, 231, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(148, 163, 184, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(0, 174, 231, 0.6);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 174, 231, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(1, 235, 205, 1) 0%, rgba(0, 174, 231, 1) 100%);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 174, 231, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-item-email { animation: contact-item-fade-in 0.5s ease-out forwards; animation-delay: 0.1s; opacity: 0; }
.contact-item-hours { animation: contact-item-fade-in 0.5s ease-out forwards; animation-delay: 0.2s; opacity: 0; }

@keyframes contact-item-fade-in {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.contact-form { animation: form-fade-in 0.6s ease-out forwards; animation-delay: 0.3s; opacity: 0; }

@keyframes form-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
    animation: modal-overlay-fade-in 0.3s ease-out;
}

@keyframes modal-overlay-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 174, 231, 0.3);
    border: 2px solid rgba(0, 174, 231, 0.2);
    animation: modal-box-pop-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modal-box-pop-in {
    0% { opacity: 0; transform: scale(0.3) translateY(50px); }
    50% { transform: scale(1.05) translateY(-10px); }
    70% { transform: scale(0.95) translateY(5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-icon-success {
    background: linear-gradient(135deg, rgba(0, 235, 205, 0.1), rgba(0, 174, 231, 0.1));
    border-radius: 50%;
}

.modal-icon-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-radius: 50%;
}

.modal-icon i {
    font-size: 3rem;
    position: relative;
    z-index: 2;
}

.modal-icon-success i {
    color: rgba(0, 174, 231, 1);
}

.modal-icon-error i {
    color: #ef4444;
}

.modal-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: modal-icon-pulse 1.5s ease-in-out infinite;
}

.modal-icon-success::before {
    background: rgba(0, 174, 231, 0.2);
}

.modal-icon-error::before {
    background: rgba(239, 68, 68, 0.2);
}

@keyframes modal-icon-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(0, 174, 231, 1);
    margin-bottom: 15px;
}

.modal-message {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-close-btn {
    padding: 14px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(1, 235, 205, 1) 0%, rgba(0, 174, 231, 1) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 231, 0.3);
}

.modal-close-btn:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .contact-title { font-size: 1.75rem; }
    .form-row { flex-direction: column; }
    .contact-form { padding: 25px; }
    .modal-box { padding: 35px 25px; }
    .contact-item { flex-direction: column; align-items: flex-start; }
}

.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1), transparent);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 174, 231, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: rgba(0, 174, 231, 0.3);
    box-shadow: 0 10px 30px rgba(0, 174, 231, 0.1);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-header {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-header:hover {
    background: rgba(0, 174, 231, 0.03);
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 235, 205, 0.1), rgba(0, 174, 231, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 235, 205, 0.2), rgba(0, 174, 231, 0.2));
}

.faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 235, 205, 0.3), rgba(0, 174, 231, 0.3));
}

.faq-question-icon {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question-icon {
    transform: scale(1.1);
}

.faq-question {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: rgba(0, 174, 231, 1);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.toggle-icon {
    position: absolute;
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toggle-plus {
    opacity: 1;
}

.toggle-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .toggle-plus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .toggle-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.faq-content.active {
    max-height: 200px;
    padding: 0 24px 20px;
}

.answer-icon {
    background: linear-gradient(135deg, rgba(0, 235, 205, 0.15), rgba(0, 174, 231, 0.15));
}

.faq-answer-icon {
    max-width: 100%;
    height: auto;
    animation: answer-icon-bounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes answer-icon-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.faq-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    padding-top: 5px;
}

.faq-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.faq-main-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: faq-image-float 6s ease-in-out infinite;
}

@keyframes faq-image-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

.faq-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 235, 205, 0.4) 0%, rgba(0, 174, 231, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: faq-glow-pulse 4s ease-in-out infinite, faq-glow-move 8s ease-in-out infinite;
}

@keyframes faq-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.8; }
}

@keyframes faq-glow-move {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-40%, -60%); }
    50% { transform: translate(-60%, -40%); }
    75% { transform: translate(-45%, -55%); }
}

.faq-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.faq-particles .particle {
    position: absolute;
    border-radius: 50%;
    animation: faq-particle-float 5s ease-in-out infinite;
}

.faq-particles .p1 {
    top: 20%;
    right: 20%;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    animation-delay: 0s;
    box-shadow: 0 0 10px rgba(0, 235, 205, 0.6);
}

.faq-particles .p2 {
    top: 30%;
    left: 15%;
    width: 6px;
    height: 6px;
    background: rgba(0, 174, 231, 0.8);
    animation-delay: 0.5s;
    box-shadow: 0 0 8px rgba(0, 174, 231, 0.5);
}

.faq-particles .p3 {
    top: 60%;
    right: 30%;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    animation-delay: 1s;
    box-shadow: 0 0 12px rgba(0, 235, 205, 0.7);
}

.faq-particles .p4 {
    top: 70%;
    left: 20%;
    width: 5px;
    height: 5px;
    background: rgba(0, 235, 205, 0.9);
    animation-delay: 1.5s;
    box-shadow: 0 0 6px rgba(0, 235, 205, 0.5);
}

.faq-particles .p5 {
    top: 40%;
    right: 40%;
    width: 7px;
    height: 7px;
    background: rgba(0, 174, 231, 0.9);
    animation-delay: 2s;
    box-shadow: 0 0 9px rgba(0, 174, 231, 0.6);
}

.faq-particles .p6 {
    top: 80%;
    right: 25%;
    width: 9px;
    height: 9px;
    background: linear-gradient(135deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    animation-delay: 2.5s;
    box-shadow: 0 0 11px rgba(0, 235, 205, 0.6);
}

@keyframes faq-particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-40px) translateX(20px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) translateX(-20px) scale(0.7);
        opacity: 0.7;
    }
    75% {
        transform: translateY(30px) translateX(15px) scale(1.2);
        opacity: 0.9;
    }
}

.faq-dashed-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 2px dashed rgba(0, 174, 231, 0.2);
    border-radius: 20px;
    z-index: 0;
    animation: faq-border-rotate 30s linear infinite;
}

@keyframes faq-border-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.faq-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: faq-item-fade-in 0.5s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1s; }

@keyframes faq-item-fade-in {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 767px) {
    .faq-title { font-size: 1.75rem; }
    .faq-header { padding: 16px 20px; gap: 12px; }
    .faq-content.active { padding: 0 20px 16px; }
    .faq-image-container { min-height: 300px; }
    .faq-glow { width: 200px; height: 200px; }
    .faq-dashed-border { width: 220px; height: 220px; }
}

.privacy-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 30%, #ffffff 70%, #f8fcff 100%);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1), transparent);
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    position: relative;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 1200px;
    margin: 20px auto;
    line-height: 1.8;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: privacy-item-fade-in 0.6s ease-out forwards;
}

.privacy-item:nth-child(1) { animation-delay: 0.1s; }
.privacy-item:nth-child(2) { animation-delay: 0.2s; }
.privacy-item:nth-child(3) { animation-delay: 0.3s; }
.privacy-item:nth-child(4) { animation-delay: 0.4s; }
.privacy-item:nth-child(5) { animation-delay: 0.5s; }
.privacy-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes privacy-item-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.privacy-number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 174, 231, 0.3);
    transition: all 0.4s ease;
}

.privacy-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(0, 235, 205, 0.3), rgba(0, 174, 231, 0.3));
    border-radius: 20px;
    z-index: -1;
    animation: number-glow-pulse 2s ease-in-out infinite;
}

@keyframes number-glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.privacy-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 174, 231, 0.1);
    box-shadow: 0 4px 20px rgba(0, 174, 231, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    transition: left 0.6s ease;
}

.privacy-card:hover::before {
    left: 0;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 174, 231, 0.15);
    border-color: rgba(0, 174, 231, 0.2);
}

.privacy-subtitle-card {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
    position: relative;
    padding-left: 20px;
}

.privacy-subtitle-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, rgba(0, 235, 205, 1), rgba(0, 174, 231, 1));
    border-radius: 2px;
}

.privacy-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-footer {
    max-width: 900px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 174, 231, 0.1);
    text-align: center;
}

.privacy-footer p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 10px;
}

.privacy-footer p:last-child {
    margin-bottom: 0;
}

.privacy-footer a {
    color: rgba(0, 174, 231, 1);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-footer a:hover {
    color: rgba(0, 235, 205, 1);
    text-decoration: underline;
}

.privacy-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 235, 205, 0.1) 0%, rgba(0, 174, 231, 0.05) 50%, transparent 70%);
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    animation: deco-float 10s ease-in-out infinite;
}

.deco-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -80px;
    animation: deco-float 8s ease-in-out infinite reverse;
}

.deco-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: deco-pulse 6s ease-in-out infinite;
}

@keyframes deco-float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -30px); }
    50% { transform: translate(-10px, -10px); }
    75% { transform: translate(30px, 20px); }
}

@keyframes deco-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.6; }
}

.deco-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 231, 0.3), transparent);
}

.deco-line-1 {
    width: 300px;
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
    animation: line-float 7s ease-in-out infinite;
}

.deco-line-2 {
    width: 250px;
    bottom: 30%;
    right: 15%;
    transform: rotate(25deg);
    animation: line-float 9s ease-in-out infinite reverse;
}

@keyframes line-float {
    0%, 100% { opacity: 0.3; transform: translateX(0) rotate(var(--rotation, 0deg)); }
    50% { opacity: 0.8; transform: translateX(20px) rotate(var(--rotation, 0deg)); }
}

.deco-line-1 { --rotation: -15deg; }
.deco-line-2 { --rotation: 25deg; }

.privacy-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 235, 205, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.privacy-card:hover::after {
    bottom: -30%;
    right: -30%;
}

@media (max-width: 767px) {
    .privacy-title { font-size: 1.75rem; }
    .privacy-item { flex-direction: column; gap: 15px; }
    .privacy-number { width: 50px; height: 50px; font-size: 1.2rem; }
    .privacy-card { padding: 20px; }
    .privacy-subtitle-card { font-size: 1.1rem; }
}

.delete-warning-section {
    background: #ffffff;
    position: relative;
}

.warning-card {
    background: rgba(255, 236, 232, 1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid rgba(245, 63, 63, 1);
    box-shadow: 0 4px 20px rgba(245, 63, 63, 0.1);
    animation: warning-card-fade-in 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes warning-card-fade-in {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.warning-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(245, 63, 63, 0.2);
}

.warning-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(245, 63, 63, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    animation: warning-icon-pulse 2s ease-in-out infinite;
}

@keyframes warning-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.warning-icon img {
    max-width: 100%;
    height: auto;
}

.warning-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(245, 63, 63, 1);
    margin: 0;
    line-height: 1.4;
}

.warning-content {
    padding-left: 10px;
}

.warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    animation: warning-list-item-fade-in 0.5s ease-out forwards;
    opacity: 0;
}

.warning-list li:nth-child(1) { animation-delay: 0.1s; }
.warning-list li:nth-child(2) { animation-delay: 0.2s; }
.warning-list li:nth-child(3) { animation-delay: 0.3s; }
.warning-list li:nth-child(4) { animation-delay: 0.4s; }

@keyframes warning-list-item-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.warning-list li:last-child {
    margin-bottom: 0;
}

.list-dot {
    width: 8px;
    height: 8px;
    background: rgba(245, 63, 63, 1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
    animation: list-dot-pulse 2s ease-in-out infinite;
}

@keyframes list-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.list-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

.warning-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 63, 63, 0.05) 0%, transparent 60%);
    border-radius: 50%;
}

.warning-card:hover {
    box-shadow: 0 8px 30px rgba(245, 63, 63, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .warning-card { padding: 20px; }
    .warning-header { flex-direction: column; gap: 12px; }
    .warning-icon { width: 40px; height: 40px; }
    .warning-title { font-size: 1.1rem; }
}

.delete-form-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 50%, #ffffff 100%);
    position: relative;
}

.delete-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 8px 40px rgba(0, 174, 231, 0.08);
    border: 1px solid rgba(0, 174, 231, 0.1);
    animation: form-card-fade-in 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes form-card-fade-in {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.delete-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
}

.delete-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgba(50, 236, 216, 1), rgba(0, 174, 231, 1));
    border-radius: 2px;
}

.delete-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 174, 231, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: #1e293b;
    background: rgba(248, 252, 255, 0.5);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: rgba(0, 174, 231, 0.6);
    box-shadow: 0 0 0 3px rgba(0, 174, 231, 0.1), 0 4px 15px rgba(0, 174, 231, 0.1);
    background: #ffffff;
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-hint {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
    margin-bottom: 0;
}

.code-input-wrapper {
    display: flex;
    gap: 12px;
}

.code-input-wrapper .form-input {
    flex: 1;
}

.code-refresh-btn {
    padding: 16px 20px;
    background: rgba(0, 174, 231, 1);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.code-refresh-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.code-refresh-btn:hover::before {
    left: 100%;
}

.code-refresh-btn:hover {
    background: rgba(0, 174, 231, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 231, 0.3);
}

.code-refresh-btn:active {
    transform: translateY(0);
}

#code-display {
    letter-spacing: 2px;
}

.refresh-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.code-refresh-btn:hover .refresh-icon {
    transform: rotate(180deg);
}

.delete-form-section .checkbox-group {
    margin-top: 5px;
}

.delete-form-section .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.delete-form-section .custom-checkbox {
    display: none;
}

.delete-form-section .checkbox-custom {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    border: 2px solid rgba(0, 174, 231, 0.4);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 3px;
    display: inline-block !important;
    box-sizing: border-box !important;
    background: #ffffff;
}

.delete-form-section .custom-checkbox:checked + .checkbox-custom {
    background: rgba(54, 134, 255, 1) !important;
    border-color: rgba(54, 134, 255, 1) !important;
}

.delete-form-section .custom-checkbox:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: check-mark-appear 0.3s ease;
}

@keyframes check-mark-appear {
    from { transform: rotate(45deg) scale(0); opacity: 0; }
    to { transform: rotate(45deg) scale(1); opacity: 1; }
}

@keyframes code-change {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.checkbox-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.delete-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, rgba(50, 236, 216, 1), rgba(0, 174, 231, 1));
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.delete-submit-btn::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.6s ease;
}

.delete-submit-btn:hover::before {
    left: 100%;
}

.delete-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 174, 231, 0.4);
}

.delete-submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: btn-shimmer 3s ease-in-out infinite;
}

@keyframes btn-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.delete-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.delete-modal.active {
    display: flex;
}

.delete-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: delete-overlay-fade-in 0.3s ease;
}

@keyframes delete-overlay-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal .modal-content {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: delete-modal-bounce-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 80px rgba(0, 174, 231, 0.3);
    border: 2px solid rgba(0, 174, 231, 0.1);
}

@keyframes delete-modal-bounce-in {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); opacity: 1; }
}

.delete-modal .modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.delete-modal .icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: delete-ring-pulse 1.5s ease-out infinite;
}

.delete-modal .modal-content.success .icon-ring {
    border: 4px solid rgba(0, 174, 231, 1);
}

.delete-modal .modal-content.error .icon-ring {
    border: 4px solid rgba(245, 63, 63, 1);
}

@keyframes delete-ring-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.delete-modal .check-icon,
.delete-modal .error-icon {
    font-size: 48px;
    position: relative;
    z-index: 1;
}

.delete-modal .check-icon {
    color: rgba(0, 174, 231, 1);
}

.delete-modal .error-icon {
    color: rgba(245, 63, 63, 1);
}

.delete-modal .modal-content.success .error-icon {
    display: none;
}

.delete-modal .modal-content.error .check-icon {
    display: none;
}

.delete-modal .modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.delete-modal .modal-content.success .modal-title {
    color: rgba(0, 174, 231, 1);
}

.delete-modal .modal-content.error .modal-title {
    color: rgba(245, 63, 63, 1);
}

.delete-modal .modal-message {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

.delete-modal .modal-close-btn {
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-modal .modal-content.success .modal-close-btn {
    background: linear-gradient(90deg, rgba(50, 236, 216, 1), rgba(0, 174, 231, 1));
    color: #ffffff;
}

.delete-modal .modal-content.error .modal-close-btn {
    background: rgba(245, 63, 63, 1);
    color: #ffffff;
}

.delete-modal .modal-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 174, 231, 0.3);
}

.delete-modal .modal-close-btn:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .delete-form-card { padding: 30px 25px; }
    .delete-form-title { font-size: 1.4rem; }
    .code-refresh-btn { min-width: 100px; padding: 16px 12px; }
    .modal-content { padding: 40px 30px; }
    .modal-title { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    #particles-canvas {
        display: none;
    }
}