@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #a8e6cf 0%, #5C2D91 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background animation and effects - removed background image to show green gradient */

.container {
    display: flex;
    flex-direction: column;
    
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Glass effect for header */
.header-glass {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 15px 30px;
    margin-bottom: 25px;
    box-shadow: 
        0 8px 32px rgba(92, 45, 145, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.header-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Site title styling */
.site-title {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

/* Main glass frame for the form */
.glass-frame {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 
        0 15px 35px rgba(92, 45, 145, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.glass-frame:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(92, 45, 145, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.form-title {
    color: #000000;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

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

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Glass effect for inputs */
.glass-input {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #5C2D91;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 4px rgba(92, 45, 145, 0.1),
        0 2px 8px rgba(92, 45, 145, 0.1);
}

.glass-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        inset 0 2px 4px rgba(92, 45, 145, 0.1),
        0 4px 12px rgba(92, 45, 145, 0.2),
        0 0 0 3px rgba(92, 45, 145, 0.1);
    transform: translateY(-2px);
}

/* Glass effect for button */
.glass-button {
    background: #5C2D91;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #5C2D91;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-shadow: 0 1px 2px rgba(92, 45, 145, 0.5);
    box-shadow: 
        0 4px 15px rgba(92, 45, 145, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
/* Additional logo styles removed */
.glass-button::before {
    font-family: 'Montserrat', sans-serif;
    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;
}

.glass-button:hover::before {
    left: 100%;
}

.glass-button:hover {
    background: #4A2470;
    border: 1px solid #4A2470;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(92, 45, 145, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 3px 10px rgba(92, 45, 145, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        justify-content: flex-start;
    }
    
    .header-glass {
        width: 100%;
        max-width: 350px;
        padding: 15px 25px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .site-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .countdown-container {
        box-sizing: border-box;
        padding: 15px;
        margin: 10px auto 10px auto;
        max-width: 400px;
    }
    
    .countdown-title {
        font-size: 0.5rem;
    }
    
    .countdown-timer {
        gap: 1px;
    }
    
    .timer-number {
        font-size: 1.5rem;
        padding: 10px 6px;
        width: 50px;
    }
    
    .timer-label {
        font-size: 0.75rem;
    }
    
    .countdown-footer {
        font-size: 0.9rem;
    }
    
    .main-content {
        width: 100%;
        align-items: center;
    }
    
    .glass-frame {
        padding: 30px 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .form-title {
        font-size: 1rem;
    }
    
    .glass-input, .glass-button {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header-glass {
        padding: 15px 20px;
        margin-bottom: 25px;
        max-width: 320px;
    }
    
    .site-title {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .countdown-container {
        padding: 12px;
        margin: 8px auto 8px auto;
        max-width: 350px;
    }
    
    .countdown-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .countdown-timer {
        gap: 6px;
    }
    
    .timer-number {
        font-size: 1.2rem;
        padding: 6px 4px;
        width: 40px;
    }
    
    .timer-label {
        font-size: 0.65rem;
        margin-top: 4px;
    }
    
    .countdown-footer {
        font-size: 0.8rem;
    }
    
    .glass-frame {
        padding: 25px 15px;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .form-title {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

/* Additional glass elements for enhanced effect */
.glass-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Countdown Container */
.countdown-container {
    max-width: 500px;
    width: 90%;
    margin: 15px auto 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 1px;
    padding-right: 1px;
    text-align: center;
}

.countdown-title {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 15px;
}

.timer-number {
    background: #5C2D91;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 10px;
    border-radius: 10px;
    width: 60px;
    display: block;
    text-align: center;
    box-shadow: 
        0 4px 15px rgba(92, 45, 145, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid #5C2D91;
}

.timer-label {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.countdown-footer {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    width: 100%;
    flex: 1;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
}

/* Expand container when dropdown is open */
.form-container.dropdown-open {
    transition: all 0.3s ease;
}

.form-container.dropdown-open .glass-button {
    margin-top: 140px;
    transition: all 0.3s ease;
}

.glass-frame.dropdown-open {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.dropdown-selected:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.dropdown-selected.active {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.selected-text {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.dropdown-arrow {
    color: rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.glass-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    border-radius: 0 0 15px 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-dropdown.show {
    max-height: 280px;
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-option {
    padding: 15px 20px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(92, 45, 145, 0.1);
    position: relative;
    overflow: hidden;
}

.dropdown-option:last-child {
    border-bottom: none;
}

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

.dropdown-option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    padding-left: 25px;
}

.dropdown-option:hover::before {
    left: 100%;
}

.dropdown-option.selected {
    background: rgba(0, 0, 0, 0.2);
    color: #000000;
    font-weight: 600;
}

.dropdown-option.selected::after {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.9);
    font-weight: bold;
}

/* Responsive adjustments for dropdown */
@media (max-width: 768px) {
    .dropdown-option {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .selected-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dropdown-option {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .selected-text {
        font-size: 0.85rem;
    }
    
    .dropdown-arrow {
        width: 10px;
        height: 6px;
    }
}

/* Floating animation removed for static appearance */

/* Pricing Cards Styles */
.pricing-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card-header {
    background: #5C2D91;
    color: #ffffff;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.pricing-card-content {
    padding: 20px;
    color: #333333;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #333333;
}

.pricing-feature.check::before {
    content: '✓';
    color: #66BB6A;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-feature.cross::before {
    content: '✗';
    color: #E57373;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-feature.bonus::before {
    content: '🎁';
    color: #FFB300;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-price-original {
    text-decoration: line-through;
    color: #666666;
    margin-bottom: 10px;
}

.pricing-price-button {
    background: #5C2D91;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    margin-top: 15px;
}

.pricing-price-button:hover {
    background: #4A2470;
}




