.hero-contact {
            background: url('assets/hero-bg-2.png') center/cover no-repeat;
            position: relative;
            padding-top: 12rem;
            padding-bottom: 8rem;
            color: white;
            text-align: center;
        }

        .contact-card {
            background: #fff;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            border: 1px solid var(--color-border);
            margin-bottom: 1.5rem;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border-color: rgba(0, 242, 254, 0.3);
        }

        .contact-icon {
            font-size: 2rem;
            color: #00f2fe;
            background: rgba(0, 242, 254, 0.1);
            padding: 1rem;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .contact-card-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #111;
        }

        .contact-card-content {
            color: var(--color-gray);
            line-height: 1.6;
        }

        /* Form Styles */
        .contact-form-wrapper {
            background: #fff;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--color-border);
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #111;
        }

        .form-control {
            width: 100%;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #00f2fe;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(0, 242, 254, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            background: #e2e8f0;
            position: relative;
        }

        .map-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #64748b;
        }