/* 
    EASYBOOST CONTACT v10.0 - THE MASTERPIECE
    Theme: Cyber Luxury / Ultra-Minimal / Mobile-Optimized
    Prefix: eb-ct- (Total Isolation)
*/

@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700;800&family=Outfit:wght@200;400;600;900&display=swap');

.eb-ct-master {
    background-color: #010103 !important;
    padding: 160px 0 30px 0 !important; /* Fixed Header Space */
    font-family: 'Outfit', sans-serif !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

/* Background Atmosphere */
.eb-ct-glow {
    position: absolute; top: 10%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.1) 0%, transparent 70%);
    filter: blur(80px); pointer-events: none; z-index: 1;
}

.eb-ct-container {
    max-width: 1200px; margin: 0 auto; padding: 0 30px;
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px;
    position: relative; z-index: 10;
}

/* --- LEFT SIDE: THE VIBE --- */
.eb-ct-info h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800; line-height: 1; margin-bottom: 25px;
    letter-spacing: -3px; text-transform: uppercase;
}
.eb-ct-info h2 span {
    background: linear-gradient(90deg, #FF2E63, #FF9933);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.eb-ct-info p { color: #94a3b8; font-size: 18px; margin-bottom: 50px; font-weight: 300; }

.eb-ct-method { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.eb-ct-icon-box {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #00C2FF; font-size: 20px; transition: 0.3s;
}
.eb-ct-method:hover .eb-ct-icon-box { border-color: #00C2FF; transform: scale(1.1); box-shadow: 0 0 20px rgba(0, 194, 255, 0.2); }

/* --- RIGHT SIDE: THE FORM --- */
.eb-ct-form-wrap { position: relative; }

.eb-ct-group { margin-bottom: 35px; position: relative; }
.eb-ct-label {
    display: block; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px; color: #555;
    margin-bottom: 12px; transition: 0.3s;
}

.eb-ct-input {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0; color: #fff; font-size: 18px; outline: none;
    transition: 0.4s ease; font-family: 'Outfit', sans-serif;
}

/* Focus Magic */
.eb-ct-input:focus { border-bottom-color: #00C2FF; }
.eb-ct-group:focus-within .eb-ct-label { color: #00C2FF; transform: translateY(-5px); }

/* International Phone Customization */
.iti { width: 100% !important; }
.iti__country-list { background-color: #111 !important; color: #fff !important; border: 1px solid #333 !important; }
.iti__selected-flag { background: transparent !important; }

/* --- BUTTON & SUCCESS --- */
.eb-ct-btn {
    width: 100%; padding: 22px; background: #fff; color: #000;
    font-weight: 900; font-size: 14px; border-radius: 12px;
    text-transform: uppercase; letter-spacing: 4px; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    gap: 15px; transition: 0.4s var(--eb-ease); position: relative; overflow: hidden;
}

.eb-ct-btn:hover:not(:disabled) { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1); }
.eb-ct-btn:disabled { opacity: 0.5; cursor: wait; }

/* The Spinner */
.eb-ct-spinner {
    width: 20px; height: 20px; border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid #000; border-radius: 50%;
    animation: eb-spin 0.8s linear infinite; display: none;
}
@keyframes eb-spin { 100% { transform: rotate(360deg); } }

.eb-ct-success {
    display: none; position: absolute; inset: 0; background: #010103;
    z-index: 50; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; border-radius: 20px; animation: ebFadeIn 0.5s ease;
}
@keyframes ebFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .eb-ct-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .eb-ct-method { justify-content: center; }
    .eb-ct-master { padding-top: 120px !important; }
    .eb-ct-info p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
    .eb-ct-info h2 { font-size: 2.2rem; letter-spacing: -1px; }
    .eb-ct-btn { padding: 18px; font-size: 12px; }
}