  .contact-form-section {
            background: #000;
            padding: 100px 0;
            color: #ffffff;
            position: relative;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        /* Left Side - Contact Info */
        .contact-info-side {
            animation: fadeInLeft 0.8s ease forwards;
        }

        .contact-section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .contact-section-desc {
            font-size: 16px;
            color: #a0a0a0;
            line-height: 1.8;
            margin-bottom: 50px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 50px;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contact-detail-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .contact-detail-icon {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-detail-content {
            flex: 1;
        }

        .contact-detail-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .contact-detail-value {
            font-size: 16px;
            color: #ffffff;
            font-weight: 500;
        }

        /* Social Media */
        .social-media-section {
            margin-top: 40px;
        }

        .social-media-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .social-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a0a0a0;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: #ffffff;
            border-color: #ffffff;
            color: #000;
            transform: translateY(-3px);
        }

        /* Right Side - Form */
        .contact-form-side {
            animation: fadeInRight 0.8s ease forwards;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 50px;
        }

        .form-group {
            margin-bottom: 35px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px dotted rgba(255, 255, 255, 0.3);
            padding: 15px 0;
            font-size: 15px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 5px center;
            padding-right: 30px;
        }

        .form-group select option {
            background: #1a1a1a;
            color: #ffffff;
            padding: 10px;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-bottom-color: #ffffff;
            border-bottom-style: solid;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #666;
            font-size: 14px;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            padding-top: 15px;
        }

        .submit-button {
            width: 100%;
            background: #ffffff;
            color: #000;
            border: none;
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-button:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .submit-button i {
            font-size: 18px;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-form {
                padding: 40px 30px;
            }

            .contact-section-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .contact-form-section {
                padding: 60px 0;
            }

            .contact-container {
                padding: 0 15px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .contact-section-title {
                font-size: 32px;
            }

            .form-group {
                margin-bottom: 30px;
            }

            .social-links {
                justify-content: center;
            }
        }