/* Extracted from: /pages/contact/index.htm */
/* Specific Override for Contact Page Layout */
        .main-content {
            padding: 0 !important;
            max-width: 100% !important;
        }

        .contact-hero {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8F66 100%);
            padding: 80px 20px 120px 20px;
            color: white;
            text-align: center;
            border-radius: 0 0 30px 30px;
            position: relative;
        }

        .contact-hero h1 {
            margin: 0 0 15px 0;
            font-size: 2.5rem;
            font-weight: 800;
        }

        .contact-hero p {
            opacity: 0.95;
            margin: 0;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-container {
            max-width: 1100px;
            margin: -80px auto 60px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        .info-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            height: fit-content;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #334155;
            font-size: 0.95rem;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.2s;
            font-family: inherit;
            background: #f8fafc;
            color: #1e293b;
        }

        .form-input:focus {
            border-color: #FF6B35;
            background: #fff;
            outline: none;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
        }

        textarea.form-input {
            resize: vertical;
            min-height: 140px;
        }

        .btn-send {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8F66 100%);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 1rem;
            transition: all 0.2s;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-send:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        /* Right Side Info */
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 30px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FF6B35;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-content h4 {
            margin: 0 0 4px 0;
            font-size: 1.05rem;
            color: #1e293b;
            font-weight: 700;
        }

        .info-content p {
            margin: 0;
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .legal-footer {
            max-width: 900px;
            margin: 40px auto;
            text-align: center;
            color: #94a3b8;
            font-size: 0.85rem;
            line-height: 1.6;
            padding: 20px;
        }

        .alert-box {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .alert-success {
            background: #ecfdf5;
            color: #047857;
            border: 1px solid #a7f3d0;
        }

        .alert-error {
            background: #fef2f2;
            color: #b91c1c;
            border: 1px solid #fecaca;
        }

        /* Mobile Responsiveness */
        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
                margin-top: -60px;
            }

            .info-card {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .contact-hero {
                padding: 50px 20px 80px 20px;
                border-radius: 0 0 20px 20px;
            }

            .contact-hero h1 {
                font-size: 1.8rem;
            }

            .contact-hero p {
                font-size: 1rem;
            }

            .contact-card,
            .info-card {
                padding: 30px 20px;
            }

            .form-grid-row {
                grid-template-columns: 1fr !important;
            }
        }
