/* =================================
   LANDING PAGE STYLES
   ================================= */

/* Utiliza variáveis do global.css */

.landing-page {
    background: radial-gradient(circle at top right, #1e1f20, #131314);
    min-height: 100vh;
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* =================================
   HEADER / NAVIGATION
   ================================= */

.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(19, 19, 20, 0.6);
    /* More transparent for glass effect */
    backdrop-filter: blur(16px) saturate(180%);
    /* Stronger blur & saturation */
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    /* Taller header */
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(168, 199, 250, 0.3));
    /* Glow effect */
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a8c7fa, #7cacf8);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login {
    padding: 10px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.btn-login:hover {
    background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
    color: #000;
    /* Dark text on bright button for contrast */
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 172, 248, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: rgba(19, 19, 20, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    animation: slideDown 0.3s ease-out;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.mobile-nav-login {
    background-color: var(--accent-color);
    color: var(--text-on-accent);
    text-align: center;
    margin-top: 8px;
}

.mobile-nav-login:hover {
    filter: brightness(1.1);
}

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

    .mobile-menu-toggle {
        display: block;
    }
}

/* =================================
   HERO SECTION
   ================================= */

.hero-section {
    padding: 100px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* Ensure child absolute elements are contained */
}

.hero-content {
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-cta {
    margin-bottom: 32px;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
    color: var(--text-on-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(168, 199, 250, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168, 199, 250, 0.4);
}

.btn-primary-large:active {
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: rgba(168, 199, 250, 0.1);
    border: 1px solid rgba(168, 199, 250, 0.2);
    border-radius: 24px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-primary-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* =================================
   FEATURES SECTION
   ================================= */

.features-section {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 31, 32, 0.3) 100%);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0 0 64px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 199, 250, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.brain-icon {
    background: linear-gradient(135deg, rgba(168, 199, 250, 0.2) 0%, rgba(124, 172, 248, 0.1) 100%);
    color: #a8c7fa;
}

.evidence-icon {
    background: linear-gradient(135deg, rgba(124, 172, 248, 0.2) 0%, rgba(100, 150, 230, 0.1) 100%);
    color: #7cacf8;
}

.speed-icon {
    background: linear-gradient(135deg, rgba(255, 204, 128, 0.2) 0%, rgba(255, 179, 71, 0.1) 100%);
    color: #ffcc80;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .features-section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =================================
   ABOUT SECTION
   ================================= */

.about-section {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 24px 0;
}



/* =================================
   CTA SECTION
   ================================= */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(168, 199, 250, 0.05) 0%, rgba(124, 172, 248, 0.05) 100%);
    border-radius: 32px;
    margin: 0 24px;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0 0 40px 0;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
        margin: 0 16px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }
}

/* =================================
   FOOTER
   ================================= */

.landing-footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

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

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.footer-legal p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 8px 0;
}

.footer-disclaimer {
    font-size: 0.85rem !important;
    font-style: italic;
    max-width: 600px;
    margin: 16px auto 0 !important;
}

@media (max-width: 768px) {
    .landing-footer {
        padding: 40px 0 32px;
        margin-top: 80px;
    }
}

/* =================================
   ANIMATIONS
   ================================= */

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   ACCESSIBILITY
   ================================= */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

/* =================================
   PUBMED SECTION (NEW)
   ================================= */
.pubmed-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(168, 199, 250, 0.03) 0%, rgba(30, 31, 32, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.pubmed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(168, 199, 250, 0.15);
    color: #a8c7fa;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

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

.pubmed-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.pubmed-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.list-icon {
    width: 32px;
    height: 32px;
    background: rgba(168, 199, 250, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Mockup Visual */
.pubmed-visual {
    position: relative;
}

.chat-mockup {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 450px;
    margin: 0 auto;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.dots span:nth-child(1) {
    background-color: #ff5f56;
}

.dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.dots span:nth-child(3) {
    background-color: #27c93f;
}

.mockup-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: radial-gradient(circle at center, rgba(30, 31, 32, 0.8), #1e1f20);
}

.msg {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 85%;
}

.msg.user {
    align-self: flex-end;
    background-color: #28292a;
    color: #e3e3e3;
    border-radius: 12px 12px 2px 12px;
}

.msg.system {
    align-self: center;
    background: transparent;
    padding: 0;
}

.pubmed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(168, 199, 250, 0.1);
    border: 1px dashed rgba(168, 199, 250, 0.3);
    border-radius: 20px;
    color: #a8c7fa;
    font-size: 0.8rem;
}

.msg.bot {
    align-self: flex-start;
    color: #e3e3e3;
    background: transparent;
    padding-left: 0;
}

/* =================================
   ANIMATIONS & FLOAT
   ================================= */
.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #4285f4;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #9b72cb;
    bottom: 0;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes floatMobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .pubmed-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pubmed-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: -1;
        /* Ensure text comes first if needed, or remove if visual should be first */
    }

    .pubmed-visual {
        width: 100%;
        display: flex !important;
        /* Use flex for centering */
        justify-content: center !important;
        /* Center content horizontally */
        opacity: 1 !important;
        visibility: visible !important;
        min-height: 300px;
        /* Force minimum height */
        padding: 0;
        /* Remove side padding to avoid off-center execution */
        margin-top: 20px;
    }

    /* Disable float on mobile to prevent off-screen issues */
    .floating-anim {
        animation: none !important;
        transform: none !important;
    }

    .chat-mockup {
        width: 100%;
        max-width: 95% !important;
        /* Slightly less than full width to show centering */
        margin: 0 auto !important;
        /* Force centering */
        background: #1e1f20 !important;
        /* Force opaque background */
        border: 2px solid rgba(168, 199, 250, 0.4);
        /* clearer border */
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        position: relative;
        z-index: 10;
        display: block !important;
    }

    .mockup-header {
        background: rgba(255, 255, 255, 0.1);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dots {
        display: flex !important;
        gap: 8px;
    }

    .dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

.msg.system {
    align-self: center;
    background: transparent;
    padding: 0;
}

.pubmed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(168, 199, 250, 0.1);
    border: 1px dashed rgba(168, 199, 250, 0.3);
    border-radius: 20px;
    color: #a8c7fa;
    font-size: 0.8rem;
}

.msg.bot {
    align-self: flex-start;
    color: #e3e3e3;
    background: transparent;
    padding-left: 0;
}

/* =================================
   ANIMATIONS & FLOAT
   ================================= */
.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #4285f4;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #9b72cb;
    bottom: 0;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes floatMobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .pubmed-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pubmed-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: -1;
        /* Ensure text comes first if needed, or remove if visual should be first */
    }

    .pubmed-visual {
        width: 100%;
        display: flex !important;
        /* Use flex for centering */
        justify-content: center !important;
        /* Center content horizontally */
        opacity: 1 !important;
        visibility: visible !important;
        min-height: 300px;
        /* Force minimum height */
        padding: 0;
        /* Remove side padding to avoid off-center execution */
        margin-top: 20px;
    }

    /* Disable float on mobile to prevent off-screen issues */
    .floating-anim {
        animation: none !important;
        transform: none !important;
    }

    .chat-mockup {
        width: 100%;
        max-width: 95% !important;
        /* Slightly less than full width to show centering */
        margin: 0 auto !important;
        /* Force centering */
        background: #1e1f20 !important;
        /* Force opaque background */
        border: 2px solid rgba(168, 199, 250, 0.4);
        /* clearer border */
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        position: relative;
        z-index: 10;
        display: block !important;
    }

    .mockup-header {
        background: rgba(255, 255, 255, 0.1);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dots {
        display: flex !important;
        gap: 8px;
    }

    .dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

/* =================================
   CONTACT SECTION
   ================================= */

.contact-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(30, 31, 32, 0.5) 0%, transparent 100%);
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out;
}

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

.contact-form .submit-btn {
    width: 100%;
    max-width: 250px;
    align-self: center;
    justify-content: center;
    margin-top: 8px;
    height: 48px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(124, 172, 248, 0.4);
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 172, 248, 0.5);
    background: linear-gradient(135deg, #b3d1ff 0%, #8ebaff 100%);
}

.contact-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(168, 199, 250, 0.05);
}

.form-feedback {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
}

.form-feedback.success {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.2);
}

.form-feedback.error {
    background: rgba(255, 95, 86, 0.1);
    color: #ff5f56;
    border: 1px solid rgba(255, 95, 86, 0.2);
}

.hidden {
    display: none;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-wrapper {
        padding: 24px;
    }
}