/* Contact Page Styles - Mixed Theme */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Hero */
        .contact-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: left;
            background: #0a1629;
            position: relative;
            overflow: hidden;
            padding: 0 20px;
        }

        .contact-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(0, 209, 255, 0.15) 0%, transparent 40%),
                        radial-gradient(circle at 70% 60%, rgba(0, 163, 255, 0.1) 0%, transparent 50%);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
            font-weight: 800;
            color: #ffffff;
            animation: slideInDown 0.8s ease-out;
        }

        .contact-hero-content h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem); /* Smaller but visible */
            font-weight: 800;
            margin-bottom: 16px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Improves visibility */
            letter-spacing: 0.5px; /* Improves readability */
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* Combined Contact Section */
        .contact-section {
            padding: 80px 20px;
            background: #ffffff;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Contact Form Styles */
        .form-wrapper {
            background: #0a1629;
            padding: 60px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            height: fit-content;
            /* Removed border-radius for rectangular look */
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .form-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.125rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #ffffff;
            font-size: 16px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.08);
            border-color: #00D1FF;
            box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.1);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: #152238;
            color: #ffffff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            margin-top: 16px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #00D1FF 0%, #00A3CC 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 209, 255, 0.3);
        }

        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0, 209, 255, 0.4);
        }

        /* Contact Info Styles (No Cards) */
        .contact-info {
            padding: 20px 0;
        }

        .info-header {
            margin-bottom: 40px;
        }

        .info-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #0a1629;
            margin-bottom: 16px;
        }

        .info-header p {
            color: #4a5568;
            font-size: 1.125rem;
        }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .info-item:hover {
            background: rgba(0, 209, 255, 0.05);
            transform: translateX(5px);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00D1FF 0%, #00A3CC 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }

        .info-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0a1629;
            margin-bottom: 8px;
        }

        .info-desc {
            color: #4a5568;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .info-item a {
            color: #00D1FF;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .info-item a:hover {
            color: #00A3CC;
        }

        .info-item span {
            color: #4a5568;
            font-weight: 500;
        }

        /* Animation */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-container {
                gap: 40px;
            }
            
            .form-wrapper {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-section {
                padding: 60px 20px;
            }
        }
