/* ========================================
   Globe CTA Section - Clean & Elegant Design
   ======================================== */

.globe-cta {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 50%, #0a0e1a 100%);
    padding: 5rem 2rem;
}

/* 3D Globe Container - CENTERED BACKGROUND */
#globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Subtle gradient overlay */
.globe-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 14, 26, 0.4) 40%, rgba(5, 8, 16, 0.9) 80%);
    z-index: 2;
    pointer-events: none;
}

/* Content Container - CENTERED */
.globe-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

/* Badge */
.globe-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    margin-bottom: 2rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 9999px;
    backdrop-filter: blur(10px);
}

.globe-pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.globe-cta-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Title */
.globe-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.globe-cta-highlight {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.globe-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.globe-cta-subtitle strong {
    color: white;
}

/* Buttons */
.globe-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.globe-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #0a0e1a;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
}

.globe-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.4);
}

.globe-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.globe-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
}

.globe-btn-icon {
    transition: transform 0.3s ease;
}

.globe-btn-primary:hover .globe-btn-icon {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .globe-cta {
        min-height: 70vh;
        padding: 4rem 1.5rem;
    }

    #globe-container {
        width: 350px;
        height: 350px;
        opacity: 0.4;
    }

    .globe-cta-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .globe-cta-subtitle {
        font-size: 1rem;
    }

    .globe-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .globe-btn-primary,
    .globe-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}