/* =======================================================
   🔥 TCM PRO TERMINAL - CONTACT CSS 🔥
======================================================== */

body {
    background-color: #050810 !important;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.contact-us {
    padding: 120px 20px 80px 20px;
    min-height: 90vh;
    background: #050810;
    position: relative;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.contact-header p {
    color: #94a3b8;
    font-size: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: stretch;
}

/* --- LEFT PANEL: INFO (CENTER ALIGNED) --- */
.contact-info-panel {
    background: rgba(11, 17, 32, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    
    /* 🎯 CENTER ALIGNMENT MAGIC */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-info-panel h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #00e5ff;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.info-item {
    display: flex;
    flex-direction: column; /* આઇકન ઉપર, ટેક્સ્ટ નીચે */
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    width: 100%;
}

.info-item .icon-box {
    width: 55px; /* આઇકન બોક્સ થોડું મોટું કર્યું */
    height: 55px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%; /* ગોળ કરી દીધું મસ્ત લાગશે */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00e5ff;
    font-size: 22px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.info-item .info-text span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item .info-text p, .info-item .info-text a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin: 0;
    transition: 0.3s;
}

.info-item .info-text a:hover {
    color: #00e5ff;
}

/* 🌍 GOOGLE MAP IFRAME CSS */
.map-container {
    width: 100%;
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.map-container iframe {
    width: 100%;
    height: 180px; /* મેપની ઊંચાઈ સેટ કરી */
    border: 0;
    display: block;
    /* નકશાને ડાર્ક કરવા માટે CSS ફિલ્ટર નો જાદુ! */
    filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(110%);
}

.social-panel {
    margin-top: 10px;
    padding-top: 25px;
    border-top: 1px dashed rgba(255,255,255,0.1);
    width: 100%;
}

.social-panel h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.yt { background: #ff0000; }
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,255,255,0.2); color:#fff; }

/* --- RIGHT PANEL: FORM --- */
.contact-form-panel {
    background: rgba(11, 17, 32, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-top: 3px solid #00e5ff;
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: #050810;
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    background: #0a0f1d;
}

.form-group input:disabled {
    background: #111827;
    color: #64748b;
    border-color: #1e293b;
    cursor: not-allowed;
}

.cyber-btn {
    width: 100%;
    background: #00e5ff;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cyber-btn:hover {
    background: #00ff88;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

/* ==========================
   SUCCESS POPUP (CYBER)
========================== */
.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-card {
    background: #0a0f1d;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    width: 350px;
    max-width: 90%;
    border: 1px solid #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2), inset 0 0 20px rgba(0, 255, 136, 0.05);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-card .emoji {
    font-size: 50px;
    color: #00ff88;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.popup-card h3 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-card p {
    margin: 15px 0 25px;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.5;
}

.popup-card button {
    background: #00ff88;
    border: none;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.popup-card button:hover {
    background: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* ===========================
   FLOAT BUTTON BASE
=========================== */
.float-btn {
    position: fixed;
    right: 20px;
    height: 58px;
    min-height: 58px;
    width: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.5);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    z-index: 9999;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease-in-out;
}

.float-btn i {
    font-size: 22px;
    min-width: 22px;
    text-align: center;
}

.float-btn span {
    opacity: 0;
    line-height: 1.2;
    transition: opacity 0.2s ease-in-out;
}

.float-btn:hover, .float-btn:focus { width: 320px; color: #fff; }
.float-btn:hover span, .float-btn:focus span { opacity: 1; }

/* 🔒 VIP Telegram */
.telegram.vip-locked {
    bottom: 160px;
    background: linear-gradient(135deg, #0d203b, #1e3c72);
    border: 2px solid #f0b429;
}
.telegram.vip-locked::after { content: "🔒"; position: absolute; right: 14px; font-size: 18px; }
.telegram.vip-locked span small { display: block; font-size: 12px; font-weight: 400; opacity: 0.85; line-height: 1.1; }

/* ✅ Free Telegram */
.telegram.free { bottom: 90px; background-color: #0088cc; }

/* ▶ YouTube */
.youtube { bottom: 20px; background-color: #FF0000; }

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-us {
        padding-top: 100px;
    }
    .contact-header h2 {
        font-size: 32px;
    }
}