/* ==========================================================================
   Astromantie Partner Analysis Page - CSS Styles
   Cosmic Dark V4 Theme Integration
   ========================================================================== */

/* ==========================================================================
   ROOT & GLOBAL STYLES
   ========================================================================== */

:root {
    /* Already defined in parent theme, but available for reference */
    --astro-bg: #0a0a1a;
    --astro-purple: #a78bfa;
    --astro-purple-dark: #7c3aed;
    --astro-gold: #e8c96a;
    --astro-gold-accent: #c9a84c;
    --astro-text: #fff;
    --astro-text-mid: rgba(255, 255, 255, 0.6);
    --astro-text-dim: rgba(255, 255, 255, 0.35);
    --astro-card: rgba(255, 255, 255, 0.03);
    --astro-card-border: rgba(255, 255, 255, 0.07);
    --astro-input-bg: rgba(255, 255, 255, 0.04);
    --astro-input-border: rgba(255, 255, 255, 0.1);
    --astro-nav-bg: rgba(10, 10, 26, 0.8);
    --astro-form-card-bg: rgba(15, 12, 35, 0.85);
    --astro-subtle-bg: rgba(124, 58, 237, 0.05);
    --astro-section-alt: rgba(255, 255, 255, 0.01);
    --astro-footer-border: rgba(255, 255, 255, 0.04);
}

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--astro-bg);
    color: var(--astro-text);
    transition: background 0.5s ease;
    overflow-x: hidden;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes starPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes skyDrift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(120px);
    }
}

@keyframes formGlowPulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(124, 58, 237, 0.2), inset 0 0 10px rgba(124, 58, 237, 0.06), 0 25px 80px rgba(0, 0, 0, 0.5);
        border-color: rgba(124, 58, 237, 0.2);
    }
    50% {
        box-shadow: 0 0 28px rgba(124, 58, 237, 0.4), inset 0 0 16px rgba(124, 58, 237, 0.1), 0 25px 80px rgba(0, 0, 0, 0.5);
        border-color: rgba(167, 139, 250, 0.45);
    }
}

@keyframes borderGlowPulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(124, 58, 237, 0.15), inset 0 0 8px rgba(124, 58, 237, 0.05), 0 25px 80px rgba(0, 0, 0, 0.5);
        border-color: rgba(124, 58, 237, 0.15);
    }
    50% {
        box-shadow: 0 0 18px rgba(124, 58, 237, 0.3), inset 0 0 12px rgba(124, 58, 237, 0.08), 0 25px 80px rgba(0, 0, 0, 0.5);
        border-color: rgba(167, 139, 250, 0.35);
    }
}

@keyframes ctaShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.5);
    }
}

@keyframes nebulaFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(10px, -10px) scale(1.1);
        opacity: 0.8;
    }
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */

.astro-container {
    min-height: 100vh;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

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

.astro-hero {
    position: relative;
    overflow: hidden;
    padding: 60px 48px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 40%),
                var(--astro-bg);
    transition: all 0.5s ease;
}

.astro-hero-bg,
.astro-starfield {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.astro-starfield {
    animation: skyDrift 50s linear infinite;
}

.astro-nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: nebulaFloat 8s ease-in-out infinite;
}

.astro-nebula-1 {
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
}

.astro-nebula-2 {
    bottom: 10%;
    right: 15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
    animation-delay: 2s;
    filter: blur(50px);
}

.astro-nebula-3 {
    top: 50%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 201, 106, 0.06) 0%, transparent 70%);
    animation-delay: 4s;
    filter: blur(30px);
}

.astro-hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--astro-bg));
    pointer-events: none;
}

.astro-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.astro-hero-icon {
    font-size: 72px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease-out both;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.3));
}

.astro-hero-label {
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--astro-purple);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.05s;
}

.astro-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    font-weight: 400;
    background: linear-gradient(135deg, var(--astro-purple), var(--astro-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 18px;
    line-height: 1.2;
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.1s;
}

.astro-hero-desc {
    font-size: 16px;
    color: var(--astro-text-mid);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.2s;
}

.astro-divider-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.25s;
}

.astro-divider-bar {
    width: 50px;
    height: 1px;
    background: rgba(167, 139, 250, 0.3);
}

.astro-divider-line > span {
    color: var(--astro-purple);
    font-size: 12px;
}

.astro-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.3s;
}

.astro-stat {
    text-align: center;
}

.astro-stat-value {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--astro-purple), var(--astro-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 4px;
}

.astro-stat-label {
    font-size: 10px;
    color: var(--astro-text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.astro-pricing {
    margin-bottom: 0;
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.35s;
}

.astro-pricing-label {
    font-size: 10px;
    color: var(--astro-text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.astro-pricing-amounts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.astro-pricing-old {
    font-size: 14px;
    color: var(--astro-text-mid);
    text-decoration: line-through;
    opacity: 0.5;
}

.astro-pricing-new {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--astro-purple), var(--astro-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .astro-hero {
        padding: 60px 20px 40px;
    }

    .astro-hero-icon {
        font-size: 56px;
    }

    .astro-hero-title {
        font-size: 30px;
    }

    .astro-pricing-old {
        font-size: 12px;
    }

    .astro-pricing-new {
        font-size: 28px;
    }
}

/* ==========================================================================
   FORM SECTION
   ========================================================================== */

.astro-form-section {
    padding: 40px 48px 80px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.6s;
}

.astro-section-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--astro-purple), var(--astro-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.astro-section-subtitle {
    font-size: 14px;
    color: var(--astro-text-mid);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 50px;
}

.astro-form-wrapper {
    position: relative;
}

.astro-form-glow {
    position: absolute;
    border-radius: 30px;
    z-index: 0;
    pointer-events: none;
    animation: formGlowPulse 4s ease-in-out infinite;
}

.astro-form-glow-outer {
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.18), 0 0 70px rgba(124, 58, 237, 0.08);
}

.astro-form-glow-line {
    position: absolute;
    top: -1px;
    left: 30px;
    right: 30px;
    height: 2px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, #7c3aed, var(--astro-purple), #7c3aed, transparent);
    border-radius: 50%;
    filter: blur(2px);
}

.astro-form-card {
    padding: 40px;
    border-radius: 24px;
    background: var(--astro-form-card-bg);
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: borderGlowPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.astro-form-starfield {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 24px;
    pointer-events: none;
    opacity: 0.3;
}

.astro-form-content {
    position: relative;
    z-index: 1;
}

.astro-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.astro-form-col-full {
    grid-column: 1 / -1;
}

.astro-form-group {
    display: flex;
    flex-direction: column;
}

.astro-form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--astro-text-mid);
    margin-bottom: 6px;
    display: block;
}

.astro-form-label-optional {
    font-weight: 400;
    font-size: 10px;
    color: var(--astro-text-dim);
}

.astro-input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--astro-input-border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--astro-text);
    background: var(--astro-input-bg);
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
    color-scheme: dark;
}

.astro-input:focus {
    border-color: rgba(167, 139, 250, 0.4);
}

.astro-form-person-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--astro-purple);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--astro-card-border);
}

.astro-form-heart-sep {
    font-size: 20px;
    text-align: center;
    padding: 12px 0;
    color: var(--astro-purple);
}

.astro-hand-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.astro-upload-box {
    border: 2px dashed var(--astro-input-border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    background: var(--astro-input-bg);
    transition: all 0.3s ease;
    position: relative;
}

.astro-upload-box:hover {
    border-color: var(--astro-purple-dark);
    background: rgba(124, 58, 237, 0.1);
}

.astro-upload-info-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: rgba(233, 213, 255, 0.8);
    cursor: pointer;
}

.astro-upload-icon {
    font-size: 30px;
    margin-bottom: 6px;
}

.astro-upload-label {
    font-size: 13px;
    font-weight: 600;
    color: #e9d5ff;
}

.astro-upload-subtext {
    font-size: 11px;
    color: var(--astro-text-dim);
    margin-top: 3px;
}

.astro-privacy-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px;
    border-radius: 10px;
    background: var(--astro-subtle-bg);
}

.astro-checkbox {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--astro-purple);
    flex-shrink: 0;
}

.astro-privacy-label {
    font-size: 12px;
    color: var(--astro-text-mid);
    line-height: 1.6;
    cursor: pointer;
}

.astro-emphasis {
    font-weight: 600;
    color: var(--astro-purple);
}

.astro-btn-primary {
    width: 100%;
    padding: 18px 32px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--astro-purple-dark), var(--astro-purple));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.astro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
}

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

.astro-btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--astro-purple-dark), var(--astro-purple), var(--astro-purple-dark), transparent);
    animation: ctaShimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.astro-payment-text {
    font-size: 11px;
    color: var(--astro-text-dim);
    text-align: center;
    margin-bottom: 20px;
}

.astro-payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.astro-payment-icons span {
    font-size: 10px;
    font-weight: 600;
    color: var(--astro-text-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.astro-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    opacity: 0.5;
}

.astro-divider-line-left,
.astro-divider-line-right {
    flex: 1;
    height: 1px;
    background: var(--astro-card-border);
}

.astro-divider span {
    font-size: 11px;
    color: var(--astro-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.astro-btn-secondary {
    width: 100%;
    padding: 14px 32px;
    border-radius: 10px;
    border: 1px solid var(--astro-purple);
    background: transparent;
    color: var(--astro-purple);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.astro-btn-secondary:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: var(--astro-purple);
}

/* Responsive Form */
@media (max-width: 768px) {
    .astro-form-section {
        padding: 50px 20px;
    }

    .astro-section-title {
        font-size: 24px;
    }

    .astro-form-grid {
        grid-template-columns: 1fr;
    }

    .astro-hand-upload-grid {
        grid-template-columns: 1fr;
    }

    .astro-form-card {
        padding: 24px;
    }
}

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

.astro-features-section {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.3s;
}

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

.astro-feature-card {
    padding: 28px;
    border-radius: 16px;
    background: var(--astro-card);
    border: 1px solid var(--astro-card-border);
    animation: fadeUp 0.6s ease-out both;
}

.astro-feature-card:nth-child(1) {
    animation-delay: 0.4s;
}

.astro-feature-card:nth-child(2) {
    animation-delay: 0.48s;
}

.astro-feature-card:nth-child(3) {
    animation-delay: 0.56s;
}

.astro-feature-card:nth-child(4) {
    animation-delay: 0.64s;
}

.astro-feature-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--astro-text);
    margin-bottom: 10px;
}

.astro-feature-desc {
    font-size: 14px;
    color: var(--astro-text-mid);
    line-height: 1.7;
}

/* Responsive Features */
@media (max-width: 768px) {
    .astro-features-section {
        padding: 50px 20px;
    }

    .astro-section-title {
        font-size: 24px;
    }

    .astro-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.astro-testimonials-section {
    padding: 80px 48px;
    background: var(--astro-section-alt);
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.5s;
}

.astro-testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.astro-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.astro-testimonial-card {
    padding: 28px;
    border-radius: 16px;
    background: var(--astro-card);
    border: 1px solid var(--astro-card-border);
    animation: fadeUp 0.6s ease-out both;
}

.astro-testimonial-card:nth-child(1) {
    animation-delay: 0.55s;
}

.astro-testimonial-card:nth-child(2) {
    animation-delay: 0.63s;
}

.astro-testimonial-text {
    font-size: 15px;
    color: var(--astro-text);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.astro-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.astro-testimonial-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--astro-purple-dark), var(--astro-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.astro-testimonial-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--astro-text);
}

.astro-testimonial-meta {
    font-size: 10px;
    color: var(--astro-text-dim);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .astro-testimonials-section {
        padding: 50px 20px;
    }

    .astro-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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

.astro-footer {
    position: relative;
    overflow: hidden;
    color: var(--astro-text-dim);
    transition: all 0.5s ease;
    background: linear-gradient(180deg, #08051a 0%, #060318 40%, #050214 100%);
}

.astro-footer-glow-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, rgba(232, 201, 106, 0.7) 25%, rgba(167, 139, 250, 0.6) 50%, rgba(232, 201, 106, 0.7) 75%, transparent 95%);
}

.astro-footer-glow-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, transparent 10%, rgba(232, 201, 106, 0.12) 30%, rgba(167, 139, 250, 0.08) 50%, rgba(232, 201, 106, 0.12) 70%, transparent 90%);
    filter: blur(8px);
}

.astro-footer-content {
    padding: 60px 48px 36px;
    max-width: 900px;
    margin: 0 auto;
}

.astro-footer-brand {
    text-align: center;
    margin-bottom: 44px;
}

.astro-footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--astro-text);
    font-weight: 500;
    margin-bottom: 14px;
    transition: color 0.5s ease;
}

.astro-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 20px;
    color: #e8e0f0;
}

.astro-footer-divider {
    justify-content: center;
    margin: 0 auto;
}

.astro-footer-divider .astro-divider-bar {
    background: rgba(232, 201, 106, 0.3);
}

.astro-footer-divider span {
    color: var(--astro-gold);
    font-size: 14px;
}

.astro-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.astro-footer-column {
    text-align: center;
}

.astro-footer-icon {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--astro-gold);
    text-shadow: 0 0 10px rgba(232, 201, 106, 0.4);
    font-weight: 300;
}

.astro-footer-title {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: var(--astro-gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.astro-footer-item {
    font-size: 13px;
    margin-bottom: 11px;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.2s ease;
}

.astro-footer-item:hover {
    color: var(--astro-gold);
}

.astro-footer-copyright {
    border-top: 1px solid rgba(232, 201, 106, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--astro-text);
}

.astro-footer-link {
    color: var(--astro-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 201, 106, 0.3);
    transition: all 0.2s ease;
}

.astro-footer-link:hover {
    border-bottom-color: var(--astro-gold);
    opacity: 0.8;
}

.astro-footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.astro-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--color, #1877F2);
}

.astro-social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.astro-social-tiktok {
    --color: #e8e8e8;
}

.astro-social-icon svg {
    color: inherit;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .astro-footer-content {
        padding: 40px 20px 28px;
    }

    .astro-footer-logo {
        font-size: 18px;
    }

    .astro-footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =======================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .astro-divider-bar {
        display: none;
    }

    .astro-divider-line {
        margin: 12px 0;
    }

    .astro-hero-stats {
        gap: 24px;
    }

    .astro-stat-label {
        font-size: 9px;
    }

    .astro-section-title {
        font-size: 24px;
    }

    .astro-form-grid {
        gap: 12px;
    }

    .astro-hand-upload-grid {
        gap: 8px;
    }

    .astro-upload-box {
        padding: 16px 12px;
    }

    .astro-upload-icon {
        font-size: 24px;
    }

    .astro-btn-primary {
        padding: 15px 24px;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

.astro-mb-0 {
    margin-bottom: 0;
}

.astro-mt-auto {
    margin-top: auto;
}
