@font-face {
    font-family: 'Integral CF';
    src: url('assets/fonts/Fontspring-DEMO-integralcf-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Integral CF';
    src: url('assets/fonts/Fontspring-DEMO-integralcf-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Integral CF';
    src: url('assets/fonts/Fontspring-DEMO-integralcf-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --primary-color: #210041;
    --background-color: #FFFFFF;
    --text-color: #212121;
    --card-bg: #F8F9FA;
    --light-bg: #F8F9FA;
    --yellow-bg: #FFDE59;
    --dark-bg: #212121;
    --light-text: #FFFFFF;
    --border-radius: 16px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-color);
    background-image: none;
    color: var(--text-color);
    min-height: 100vh;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navbar styles */
.navbar {
    background-color: white;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    padding: 1rem 2rem;
    margin-top: 0;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Integral CF', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--text-color);
}

.details-header h2 {
    font-family: 'Integral CF', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem!important;
    letter-spacing: 0.01em;
    color: var(--primary-color);
}


.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.connect-wallet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-size: 12px;
}

.connect-wallet:hover {
    scale: 1.2;
    background: #3367D6;
    color: white;
    transition: all 0.3s ease-in-out;
}

/* Hero section styles */
.hero {
    text-align: center;
    padding-top: 8rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.social-icon {
    background: var(--card-bg);
    padding: 0.75rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Stats section styles */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.stat-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.6);
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-emoji {
    font-size: 2.5rem;
}

.stat-text {
    text-align: left;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: -100px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
        min-width: 200px;
    }
    
    .stat-emoji {
        font-size: 2rem;
    }
}

@font-face {
    font-family: 'Integral CF';
    src: url('assets/Fontspring-DEMO-integralcf-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* Update the relevant text elements to use the new font */
.hero-title,
.stat-card h2 {
    font-family: 'Integral CF', sans-serif;
}

/* Mobile menu icon styling */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: rgb(142, 135, 135);
}
.pricing-grid .pricing-card h2 {
    font-family: 'Integral CF', sans-serif;
   font-weight: 800;
}

/* Media query for mobile responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 15px 0;
        color: white;
    }
    
    .mobile-menu-icon {
        display: block;
        z-index: 101;
        order: 3;
    }
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .logo {
        order: 1;
        font-size: 1rem;
    }
    
    .connect-wallet {
        order: 2;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-right: 10px;
    }
    
    .connect-wallet:hover {
        scale: 1.1;
    }
    
    .tier-details {
        z-index: 200;
    }
    
    .close-btn {
        z-index: 201;
    }
}

/* Footer styles */
.footer {
    margin-top: 6rem;
    padding: 2rem 0;
    text-align: center;
    background-color: white;
    backdrop-filter: none;
    border-top: 1px solid #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright {
    color: #1b1b1b;
    font-size: 0.7rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 200;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Update responsive design for footer */
@media (max-width: 768px) {
    .footer {
        margin-top: 4rem;
        padding: 1.5rem 0;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Pricing Section Styles */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Logos Section */
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: -5rem;
    opacity: 0.7;
    scale: 0.8;
}

.logo-img {
    max-height: 38px;
    width: auto;
    filter: grayscale(0.5) brightness(0.9);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s;
}

.logo-img-google {
    height: 40px;
    width: auto;
}

.logo-img-microsoft {
    height: 30px;
    width: auto;
}

.logo-img-eleven {
    height: 20px;
    width: auto;
}

.logo-img-openai {
    height: 30px;
    width: auto;
}

.logo-img:hover {
    filter: none;
    opacity: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-family: 'Integral CF', Arial, sans-serif;
    font-size: 2.15rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -.5px;
}
.pricing-header span {
    font-family: 'Integral CF', Arial, sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -.5px;
}

.subscription-toggle {
    display: inline-flex;
    background-color: #E8EAED;
    border-radius: 30px;
    padding: 0.25rem;
    margin: 1rem auto;
}

.toggle-btn {
    background: none;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    position: relative;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    overflow: visible;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pricing-card:nth-child(2) {
    background-color: #F1F3F4;
    border: 1px solid #E8EAED;
}

.pricing-card:first-child {
    border: 1px solid #E8EAED;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tier-name {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(188, 213, 255, 0.2);
    border-radius: 30px;
    font-weight: 800;
}

.expand-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.expand-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.price {
    font-size: 4rem;
    font-weight: 700;
    margin: 1rem 0;
}

.description {
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    align-self: flex-end;
    transition: background-color var(--transition-speed) ease;
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Updated hover preview styles */
.hover-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    pointer-events: none;
    z-index: 20;
    font-size: 5rem;
}

.pricing-card:hover .hover-preview {
    opacity: 1;
}

/* Updated emoji hover animation to top right */
.hover-preview .emoji {
    position: absolute;
    bottom: -50px;
    right: 20px;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 30;
}

.pricing-card:hover .hover-preview .emoji {
    transform: scale(1.2);
    bottom: calc(100% - 60px);
}

.character-mascot {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: url('assets/character.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Tier Details Styles */
.tier-details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 100;
    display: none;
    overflow-y: auto;
}

.tier-details.active {
    display: block;
    animation: slideIn var(--transition-speed) ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #E8EAED;
}

.details-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.details-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.details-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
}

.features-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    border-bottom: 1px solid #E8EAED;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.bonus-features {
    background-color: #F8F9FA;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.bonus-features h4 {
    margin-bottom: 1.5rem;
    color: #757575;
}

.bonus-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #E8EAED;
    border-radius: 4px;
    margin-right: 1rem;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.cta-button:hover {
    background-color: #3367D6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        max-width: 100%;
        min-height: 250px;
        margin-bottom: 1rem;
    }
    
    .pricing-card:last-child {
        grid-column: span 1;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }
    
    .pricing-header h1 {
        font-size: 2.25rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .tier-name {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .hover-preview {
        font-size: 4rem;
    }
    
    .pricing-container {
        padding: 2rem 1rem;
    }
    
    /* Logos section responsive */
    .logos {
        gap: 1.5rem;
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        scale: 0.8;
    }

    .logo-img {
        max-height: 20px;
        width: auto;
    }
    
    .logo-img-google {
        height: 40px;
        width: auto;
    }
    .logo-img-microsoft {
        height: 20px;
        width: auto;
    }
    .logo-img-eleven {
        height: 10px;
        width: auto;
    }
    .logo-img-openai {
        height: 30px;
        width: auto;
    }
}

/* Fix for small mobile devices */
@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .hover-preview {
        font-size: 3.5rem;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    /* Logos section for small screens */
    .logos {
        gap: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        scale: 0.7;
    }
    
    .logo-img {
        max-height: 15px;
        width: auto;
    }
    
    .logo-img-google {
        height: 30px;
        width: auto;
    }
    .logo-img-microsoft {
        height: 15px;
        width: auto;
    }
    .logo-img-eleven {
        height: 8px;
        width: auto;
    }
    .logo-img-openai {
        height: 20px;
        width: auto;
    }
}

/* Loader Overlay Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: #000000;
}

.loader-video {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
}

/* Fallback loader styles */
.loader-fallback {
    position: relative;
    text-align: center;
    z-index: 10;
    opacity: 1;
    margin-top: 1rem;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.progress-container {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.percentage {
    font-size: 1rem;
    color: gray;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Main Content Styles */
.main-content {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Contact Info Styles */
.contact-info {
    padding: 2rem;
}

.info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-section p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #3367D6;
    text-decoration: underline;
}

.contact-details p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.cta-section {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.cta-text {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive styles for contact info */
@media (max-width: 768px) {
    .contact-info {
        padding: 1rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        min-width: auto;
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Hide mobile menu icon when popup is active */
.tier-details.active ~ .container .mobile-menu-icon {
    display: none !important;
}

/* Alternative approach using JavaScript */
@media screen and (max-width: 768px) {
    /* Existing mobile styles... */
    
    /* Ensure popup has higher z-index */
    .tier-details {
        z-index: 200;
    }
    
    .close-btn {
        z-index: 201;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #faf8f6 0%, #f0f0f0 100%);
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    font-family: 'Integral CF', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.05);
}

.modal-form {
    padding: 1rem 2rem 2rem 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: 0;
    font-size: 0.7rem;
    color: var(--primary-color);
}

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

.form-group select {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1rem;
}

.form-submit:hover {
    background: #3367D6;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive for Modals */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-form {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
} 