
        .contact-section {
            background: #0d0d0d;
            padding: 80px 20px;
            font-family: "Poppins", sans-serif;
            color: #ddd;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-header h1 {
            font-size: 48px;
            font-weight: 700;
            color: #ff7b00;
        }

        .contact-header .underline {
            width: 120px;
            height: 4px;
            background: #ff7b00;
            margin: 10px auto 20px;
            border-radius: 5px;
        }

        .contact-header p {
            color: #ccc;
            font-size: 18px;
        }

        /* Grid Layout */
        .contact-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Form Card */
        .contact-form-card {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 20px;
            flex: 1;
            min-width: 350px;
            max-width: 500px;
            border: 2px solid #ff7b00;
            box-shadow: 0 0 25px rgba(255, 123, 0, 0.2);
        }

        .contact-form-card h2 {
            color: #ff7b00;
            margin-bottom: 20px;
        }

        .form-row {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #555;
            background: #111;
            color: #fff;
            font-size: 16px;
        }

        .form-control::placeholder {
            color: #888;
        }

        .btn-submit {
            background: #ff7b00;
            color: #111;
            font-weight: 700;
            padding: 12px 25px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.3s ease;
        }

        .btn-submit:hover {
            background: #e06a00;
            transform: translateY(-2px);
        }

        /* Contact Info Card */
        .contact-info-card {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 20px;
            flex: 1;
            min-width: 350px;
            max-width: 500px;
            border: 2px solid #ff7b00;
            box-shadow: 0 0 25px rgba(255, 123, 0, 0.2);
        }

        .contact-info-card h2 {
            color: #ff7b00;
            margin-bottom: 20px;
        }

        .contact-info-card p {
            margin-bottom: 12px;
        }

        .contact-info-card i {
            margin-right: 8px;
            color: #ff7b00;
        }

        .map-container {
            margin-top: 20px;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .contact-grid {
                flex-direction: column;
                align-items: center;
            }
        }


        p {
            font-family: var(--body-font);
            margin: 0 0 18px 0;
            color: #fff;
            line-height: 1.75;
        }
        
        .error {
            color: red;
            font-size: 13px;
            display: block;
            margin-top: 4px;
        }

        .success {
            color: green;
            font-size: 14px;
        }

        input.error-field,
        textarea.error-field {
            border: 1px solid red !important;
        }