        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background */
        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
            animation: backgroundShift 15s ease-in-out infinite;
            z-index: -2;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translateX(0px) translateY(0px); }
            25% { transform: translateX(20px) translateY(-20px); }
            50% { transform: translateX(-15px) translateY(15px); }
            75% { transform: translateX(25px) translateY(10px); }
        }

        /* Geometric Shapes */
        .geometric-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: floatShapes 8s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            top: 20%;
            right: 15%;
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.08);
            transform: rotate(45deg);
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            bottom: 30%;
            left: 20%;
            width: 0;
            height: 0;
            border-left: 40px solid transparent;
            border-right: 40px solid transparent;
            border-bottom: 70px solid rgba(255,255,255,0.06);
            animation-delay: 4s;
        }

        .shape:nth-child(4) {
            bottom: 20%;
            right: 25%;
            width: 100px;
            height: 50px;
            background: rgba(255,255,255,0.05);
            border-radius: 50px;
            animation-delay: 6s;
        }

        @keyframes floatShapes {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(90deg); }
            50% { transform: translateY(-40px) rotate(180deg); }
            75% { transform: translateY(-20px) rotate(270deg); }
        }

        /* Main Container */
        .contact-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        /* Header Styles */
        .contact-section h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff, #cccccc, #ffffff);
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientText 3s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255,255,255,0.3);
            position: relative;
        }

        .contact-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
            animation: lineGlow 2s ease-in-out infinite;
        }

        @keyframes gradientText {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes lineGlow {
            0%, 100% { width: 50px; opacity: 0.5; }
            50% { width: 150px; opacity: 1; }
        }

        .contact-section h4 {
            font-size: 1.5rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 50px;
            font-weight: 300;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Contact Info Container */
        .contact-info {
            display: grid;
            gap: 30px;
            margin-top: 40px;
            animation: slideInScale 1s ease-out 1s both;
        }

        @keyframes slideInScale {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Contact Item */
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 25px 35px;
            background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .contact-item:nth-child(1) { animation-delay: 1.2s; }
        .contact-item:nth-child(2) { animation-delay: 1.4s; }
        .contact-item:nth-child(3) { animation-delay: 1.6s; }
        .contact-item:nth-child(4) { animation-delay: 1.8s; }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }

        .contact-item:hover::before {
            left: 100%;
        }

        .contact-item:hover {
            transform: translateY(-10px) scale(1.02);
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
            border-color: rgba(255,255,255,0.2);
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.3),
                0 0 30px rgba(255,255,255,0.1);
        }

        /* Icon Styles */
        .contact-item i {
            font-size: 1.8rem;
            color: #ffffff;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
            padding: 15px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            text-shadow: 0 0 15px rgba(255,255,255,0.3);
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 0 15px rgba(255,255,255,0.2);
            }
            50% { 
                transform: scale(1.05); 
                box-shadow: 0 0 25px rgba(255,255,255,0.4);
            }
        }

        .contact-item:hover i {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
            border-color: rgba(255,255,255,0.4);
            box-shadow: 0 0 30px rgba(255,255,255,0.5);
        }

        /* Text Content */
        .contact-content {
            flex: 1;
            text-align: right;
        }

        .contact-content strong {
            display: block;
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 8px;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(255,255,255,0.2);
        }

        .contact-content a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .contact-content a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.5));
            transition: width 0.3s ease;
        }

        .contact-content a:hover {
            color: #ffffff;
            text-shadow: 0 0 15px rgba(255,255,255,0.5);
            transform: translateX(-5px);
        }

        .contact-content a:hover::after {
            width: 100%;
        }

        /* Specific Icon Colors and Animations */
        .fa-mobile-alt {
            animation-delay: 0s;
        }

        .fa-phone-alt {
            animation-delay: 0.5s;
        }

        .fa-envelope {
            animation-delay: 1s;
        }

        .fa-globe {
            animation-delay: 1.5s;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 15px;
            }

            .contact-section h2 {
                font-size: 2.2rem;
            }

            .contact-section h4 {
                font-size: 1.2rem;
                margin-bottom: 40px;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
                padding: 20px;
                gap: 15px;
            }

            .contact-content {
                text-align: center;
            }

            .contact-item i {
                font-size: 1.5rem;
                padding: 12px;
            }

            .contact-info {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .contact-section h2 {
                font-size: 1.8rem;
            }

            .contact-section h4 {
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .contact-item {
                padding: 15px;
            }

            .contact-content strong {
                font-size: 1rem;
            }

            .contact-content a {
                font-size: 0.95rem;
            }
        }

        /* Loading Animation */
        body {
            animation: pageLoad 1s ease-out;
        }

        @keyframes pageLoad {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Additional Glow Effect */
        .contact-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.03), transparent);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: centralGlow 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes centralGlow {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1); 
                opacity: 0.3; 
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.2); 
                opacity: 0.6; 
            }
        }
