/* Import fonts directly */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

/* =========================================
   TELEPORT SLOTS (System Core)
   ========================================= */
.ioa-teleport-slot {
    min-height: 0;
    transition: all 0.3s ease;
    margin-bottom: 0;
    width: 100%;
}

.ioa-teleport-slot.has-content {
    margin-bottom: 2rem;
    animation: ioa-fade-in 0.5s ease;
}

/* Editor Visuals */
.is-editor-mode .ioa-teleport-slot {
    min-height: 40px;
    border: 1px dashed rgba(10, 167, 255, 0.3);
    background: rgba(10, 167, 255, 0.05);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.is-editor-mode .ioa-teleport-slot::before {
    content: attr(data-label);
    font-size: 11px;
    color: #0AA7FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@keyframes ioa-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   MAIN STRIP CONTAINER
   ========================================= */
.ioa-universal-strip {
    /* Design Variables */
    --univ-primary: #2E3A61;   /* Dark Blue */
    --univ-accent: #0AA7FF;    /* Bright Blue */
    --univ-bg: #F8FAFC;
    --univ-text-main: #111827;
    --univ-text-sub: #64748B;
    
    /* Spacing */
    --space-md: 1rem;
    --space-xl: 2rem;

    font-family: 'Inter', sans-serif !important;
    background-color: var(--univ-bg);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Reset */
.ioa-universal-strip *,
.ioa-universal-strip *::before,
.ioa-universal-strip *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

.ioa-universal-strip .ioa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

/* =========================================
   HEADER SECTION
   ========================================= */
.ioa-universal-strip .ioa-strip-header {
    text-align: center;
    margin-bottom: 40px !important;
}

.ioa-universal-strip .ioa-main-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    color: var(--univ-text-main) !important;
    margin-bottom: 10px !important;
}

.ioa-universal-strip .ioa-sub-desc {
    font-size: 16px !important;
    color: var(--univ-text-sub) !important;
    max-width: 600px;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

/* =========================================
   CONTACT GRID
   ========================================= */
.ioa-universal-strip .ioa-contact-grid {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Individual Item */
.ioa-universal-strip .ioa-contact-item {
    display: flex !important;
    align-items: center;
    gap: 16px;
    padding: 24px !important;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease !important;
    flex: 1 1 300px;
    min-width: 280px;
    max-width: 400px;
    border: 1px solid transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ioa-universal-strip .ioa-contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--univ-accent);
}

/* Icons */
.ioa-universal-strip .ioa-icon-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    background-color: rgba(46, 58, 97, 0.05);
    color: var(--univ-primary);
    flex-shrink: 0;
    transition: all 0.3s ease !important;
}

.ioa-universal-strip .ioa-contact-item:hover .ioa-icon-wrapper {
    background-color: var(--univ-accent);
    color: #ffffff;
}

.ioa-universal-strip .ioa-icon-wrapper i,
.ioa-universal-strip .ioa-icon-wrapper svg {
    font-size: 24px !important;
    width: 24px !important;
    height: 24px !important;
}

/* Text */
.ioa-universal-strip .ioa-item-content {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.ioa-universal-strip .ioa-item-label {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    color: var(--univ-text-main) !important;
    margin-bottom: 4px !important;
    display: block !important;
}

.ioa-universal-strip .ioa-item-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    color: var(--univ-text-sub) !important;
    line-height: 1.5 !important;
}

.ioa-universal-strip .ioa-item-link {
    transition: color 0.2s ease;
}

.ioa-universal-strip .ioa-item-link:hover {
    color: var(--univ-accent) !important;
}

/* =========================================
   BUTTON STYLES (Robust Pill Design)
   ========================================= */
.ioa-universal-strip .ioa-btn-container {
    margin-top: 40px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.ioa-universal-strip .ioa-pill-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    
    /* Shape & Size */
    padding: 16px 48px !important;
    min-width: 220px;
    border-radius: 100px !important; /* Forces pill shape */
    
    /* Typography */
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    line-height: 1.2 !important;
    
    /* Default Colors (Hardcoded to ensure visibility) */
    background-color: #2E3A61; 
    color: #ffffff !important;
    border: 2px solid transparent;
    
    /* Effects */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(46, 58, 97, 0.2);
    cursor: pointer;
}

/* Hover State */
.ioa-universal-strip .ioa-pill-btn:hover {
    background-color: #0AA7FF !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 167, 255, 0.35);
    color: #ffffff !important;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .ioa-universal-strip .ioa-contact-grid {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .ioa-universal-strip .ioa-contact-item {
        max-width: 100% !important;
    }
    
    .ioa-universal-strip .ioa-pill-btn {
        width: 100%;
        max-width: 300px;
    }
}