
    :root {
        --primary: #4fc3f7;
        --primary-dark: #1976d2;
        --accent: #ffd700;
        --dark-bg: #1e1e1e;
        --darker-bg: #121212;
        --card-bg: #2a2a2a;
        --text-light: #e0e0e0;
        --text-muted: #b0b0b0;
        --whatsapp: #25D366;
        --whatsapp-dark: #128C7E;
        --urgent: #ff5252;
    }

    .contact-container {
        max-width: 1200px;
        margin: 3rem auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        perspective: 1000px;
    }

    .contact-info {
        background: linear-gradient(135deg, #0f172a, #1e2d50, #23395d, #112240);

        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
    }

    .contact-info:hover {
        transform: translateY(-5px) rotateX(2deg);
    }

    .contact-info h2 {
        color: var(--primary);
        margin-bottom: 2rem;
        font-size: 2rem;
        position: relative;
        display: inline-block;
    }

    .contact-info h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), transparent);
    }

    .contact-details {
        margin-bottom: 2.5rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: linear-gradient(135deg, #1a2a4f, #071a47);
        border-radius: 8px;
        transition: all 0.3s ease;
        transform: translateZ(0);
    }

    .contact-item:hover {
        background: var(--card-bg);
        transform: translateZ(10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .contact-item i {
        color: var(--accent);
        margin-right: 1.5rem;
        font-size: 1.4rem;
        width: 30px;
        text-align: center;
    }

    .connect-options {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

.connect-btn {
    display: inline-flex; /* Changed from flex to inline-flex */
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    width: 100%;
    max-width: 280px;
    background-color: var(--whatsapp);
    color: white;
    text-decoration: none;
    
}


.connect-btn i {
    font-size: 1.3rem;
}


.connect-btn::before, .connect-btn::after {
    pointer-events: none;
}

.trust-badges {
    margin-top: 60px;
    background: linear-gradient(135deg, #1a2a4f, #0f172a);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #f7f1f1;
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    align-items: center;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: normal; 
    min-width: min-content; 
    line-height: 1.4; 
}


.trust-badges span:not(:last-child)::after {
    content: "•";
    color: rgba(255,255,255,0.3);
    margin-left: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .trust-badges {
        gap: 12px 20px; 
    }
    .trust-badges span::after {
        content: none; 
    }
}

    .bright-text {
        color: #f9f9f6; 
        font-weight: 500;
    }


    .engagement-column {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }


    .response-card {
        background: linear-gradient(135deg, #0f172a, #1e2d50, #23395d, #112240);

        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        transform-style: preserve-3d;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(79, 195, 247, 0.2);
    }

    .response-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
        transform: rotate(30deg);
        z-index: 0;
    }

    .response-card:hover {
        transform: translateY(-5px) rotateY(5deg);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }

    .response-card h3 {
        color: var(--accent);
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .response-card h3 i {
        font-size: 1.8rem;
    }

    .response-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        position: relative;
        z-index: 1;
    }

    .response-item:last-child {
        border-bottom: none;
    }

    .response-label {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 500;
    }

    .response-label i {
        color: var(--primary);
        font-size: 1.2rem;
    }

    .response-value {
        font-weight: 600;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-size: 1.1rem;
        position: relative;
    }

    .response-value::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
        opacity: 0.7;
    }


    .activity-card {
        background: linear-gradient(135deg, #0f172a, #1e2d50, #23395d, #112240);

        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4); 
        transform-style: preserve-3d;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(79, 195, 247, 0.2); 
        backdrop-filter: blur(12px) saturate(180%);
        -webkit-backdrop-filter: blur(12px) saturate(180%);
    }


    .activity-card h3 {
        color: var(--primary);
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .activity-card h3 i {
        font-size: 1.8rem;
        color: var(--accent);
    }

    .activity-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        position: relative;
        z-index: 1;
    }


    .availability-section {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, #0f172a, #1e2d50, #23395d, #112240);

        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        margin-top: 2rem;
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
    }

    .availability-section:hover {
        transform: translateY(-5px) rotateX(-2deg);
    }

    .availability-section h3 {
        color: var(--primary);
        margin-bottom: 2rem;
        font-size: 1.8rem;
        text-align: center;
        position: relative;
    }

    .availability-section h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
    }

    .availability-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .availability-card {
        background: linear-gradient(135deg, #121313, #0f172a);
        border-radius: 12px;
        padding: 2rem;
        transition: all 0.5s ease;
        border-top: 4px solid var(--primary);
        transform-style: preserve-3d;
        position: relative;
        overflow: hidden;
    }

    .availability-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, transparent 100%);
        z-index: 0;
    }

    .availability-card:hover {
        transform: translateY(-10px) rotateY(5deg);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    .availability-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .availability-header i {
        font-size: 1.8rem;
        color: var(--accent);
    }

    .availability-header h4 {
        color: var(--text-light);
        font-size: 1.3rem;
        margin: 0;
    }

    .availability-times {
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .availability-times p {
        color: var(--text-muted);
        margin: 8px 0;
        font-size: 0.95rem;
    }

    .current-status {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        color: var(--text-light);
        position: relative;
        z-index: 1;
    }

    @keyframes pulse-green {
        0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
        100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
    }

    @keyframes pulse-red {
        0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
        100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
    }

    .status-dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 8px;
    }

    .status-dot.online {
        background-color: #28a745;
        animation: pulse-green 2s infinite;
    }

    .status-dot.offline {
        background-color: #dc3545;
        animation: pulse-red 2s infinite;
    }

    .status-dot.busy {
        background: #FFC107;
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.2); opacity: 0.7; }
        100% { transform: scale(1); opacity: 1; }
    }


    @media (max-width: 992px) {
        .contact-container {
            grid-template-columns: 1fr;
        }
    }

    .navigation {
    display: block;
    }

    .nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    }

    .nav-item {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.6rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-item:hover {
    color: #4fc3f7;
    }

    .nav-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    transition: width 0.3s ease;
    }

    .nav-item:hover::before,
    .nav-item.active::before {
    width: 100%;
    }

    .nav-item.active {
    color: #4fc3f7;
    font-weight: 600;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    }

    .mobile-menu-btn:hover {
    color: #4fc3f7;
    transform: scale(1.1);
    }

    /* ===== Responsive Styles ===== */
    @media (max-width: 768px) {
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1e1e1e;
        padding: 1.5rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }

    .navigation.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

        .availability-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .container {
            padding: 0 1rem;
        }

        .contact-info, .response-card, .activity-card {
            padding: 1.5rem;
        }
    }

    .gold-bold {
    color: gold;
    font-weight: bold;
    }

    .client-gold {
    color: gold;
    font-weight: bold;
    }

    .timestamp {
    color: #90caf9; 
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.4rem;
    text-shadow: 0 0 5px rgba(144, 202, 249, 0.5);
    }




