.chess-contact {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .chess-contact__title {
            text-align: center;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 50px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .chess-contact__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .chess-contact__card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .chess-contact__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }

        .chess-contact__card:hover::before {
            left: 100%;
        }

        .chess-contact__card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .chess-contact__icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
            transition: all 0.3s ease;
        }

        .chess-contact__card:hover .chess-contact__icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(229, 62, 62, 0.4);
        }

        .chess-contact__icon i {
            font-size: 2rem;
            color: #fff;
        }

        .chess-contact__heading {
            font-size: 1.5rem;
            color: #2d3748;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .chess-contact__info {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        .chess-contact__info-line {
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .chess-contact__info-line:hover {
            color: #e53e3e;
        }

        .chess-contact__info-line:last-child {
            margin-bottom: 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .chess-contact {
                padding: 40px 15px;
            }

            .chess-contact__title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .chess-contact__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .chess-contact__card {
                padding: 30px 20px;
                margin-bottom: 10px;
            }

            .chess-contact__icon {
                width: 70px;
                height: 70px;
            }

            .chess-contact__icon i {
                font-size: 1.7rem;
            }

            .chess-contact__heading {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .chess-contact__info {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .chess-contact {
                padding: 30px 10px;
            }

            .chess-contact__title {
                font-size: 1.8rem;
            }

            .chess-contact__card {
                padding: 25px 15px;
                border-radius: 15px;
            }

            .chess-contact__icon {
                width: 60px;
                height: 60px;
                margin-bottom: 20px;
            }

            .chess-contact__icon i {
                font-size: 1.5rem;
            }

            .chess-contact__heading {
                font-size: 1.2rem;
            }
        }

        /* Animation for page load */
        .chess-contact__card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .chess-contact__card:nth-child(1) { animation-delay: 0.1s; }
        .chess-contact__card:nth-child(2) { animation-delay: 0.2s; }
        .chess-contact__card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Pulse animation for icons */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .chess-contact__icon {
            animation: pulse 2s infinite;
        }