:root {
    --pink-light: #FFD6E0;
    --pink-medium: #FF84B7;
    --pink-dark: #FF2E93;
    --blue-light: #C4E0F9;
    --blue-medium: #6096BA;
    --blue-dark: #2C5F8B;
    --brown-light: #D7BEA8;
    --brown-medium: #9C6644;
    --brown-dark: #6D3D1E;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #FAFAFA;
    color: #333;
    overflow-x: hidden;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.futuristic-gradient {
    background: linear-gradient(135deg, var(--pink-medium) 0%, var(--blue-dark) 100%);
}

.futuristic-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px;
    min-width: 90px;
}

.badge {
    background: rgba(255, 214, 224, 0.3);
    color: var(--blue-dark);
    border-radius: 30px;
    padding: 8px 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    margin-right: 6px;
}

.feature-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.cta-button {
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--blue-dark) 100%);
    color: white;
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 46, 147, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--pink-dark) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 46, 147, 0.4);
}

.secondary-button {
    background: rgba(196, 224, 249, 0.3);
    color: var(--blue-dark);
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--blue-medium);
    backdrop-filter: blur(5px);
}

.secondary-button:hover {
    background: rgba(196, 224, 249, 0.5);
    transform: translateY(-3px);
}

.form-input {
    border: 1px solid rgba(196, 224, 249, 0.5);
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.form-input:focus {
    border-color: var(--blue-medium);
    box-shadow: 0 0 0 3px rgba(96, 150, 186, 0.2);
    outline: none;
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-height: 60px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.icon-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
}

/* Animated background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.animated-bg .bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out;
}

.animated-bg .bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    background: var(--pink-medium);
    left: 10%;
    top: 40%;
    animation-delay: 0s;
}

.animated-bg .bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    background: var(--blue-medium);
    right: 15%;
    top: 30%;
    animation-delay: 1s;
}

.animated-bg .bubble:nth-child(3) {
    width: 150px;
    height: 150px;
    background: var(--brown-medium);
    left: 30%;
    bottom: 20%;
    animation-delay: 2s;
}

.animated-bg .bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    background: var(--pink-dark);
    right: 30%;
    bottom: 30%;
    animation-delay: 3s;
}

.animated-bg .bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    background: var(--blue-dark);
    left: 40%;
    top: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Animated border */
.animated-border {
    position: relative;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, var(--pink-dark), var(--blue-dark), var(--brown-dark), var(--pink-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 300% 300%;
    animation: animatedBorder 4s linear infinite;
}

@keyframes animatedBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Typing animation */
.typing-container {
    display: inline-block;
}

.typing-text {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--pink-dark);
    animation: typing 3.5s steps(30, end) infinite, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    0% {
        width: 0;
    }
    70% {
        width: 100%;
    }
    90%, 100% {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--pink-dark);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* Custom checkbox */
.custom-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--blue-medium);
    border-radius: 6px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: rgba(196, 224, 249, 0.3);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--blue-dark);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Glowing effect */
.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: linear-gradient(45deg, var(--pink-dark), var(--blue-dark), var(--brown-dark), var(--pink-dark));
    background-size: 400% 400%;
    border-radius: 16px;
    animation: glowing 3s ease infinite;
    opacity: 0.7;
    filter: blur(10px);
}

@keyframes glowing {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Parallax effect */
.parallax {
    transition: transform 0.2s ease-out;
}

/* Cursor trail */
.cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink-dark);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0.7;
    mix-blend-mode: screen;
}

/* Footer styling */
.footer {
    background: linear-gradient(135deg, rgba(44, 95, 139, 0.95) 0%, rgba(109, 61, 30, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--pink-light);
    transform: translateX(3px);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Testimonial carousel */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(96, 150, 186, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--blue-dark);
    transform: scale(1.2);
}

/* Form validation styles */
.form-input.error {
    border-color: var(--pink-dark);
    background-color: rgba(255, 46, 147, 0.05);
}

/* Slider styles */
input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(196, 224, 249, 0.5);
    outline: none;
    margin: 15px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--pink-dark);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--pink-dark);
}

/* Radio button styles */
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--blue-medium);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    vertical-align: middle;
    transition: all 0.2s ease;
}

input[type="radio"]:checked {
    border-color: var(--blue-dark);
}

input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--blue-dark);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Success message animation */
#success-message {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
