/* Card System */
.welcome-text span,
.name-title span {
    color: var(--accent-yellow);
}

.card-style {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Contact Specifics */
.visual-placeholder {
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1470&auto=format&fit=crop') center/cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    min-height: 250px;
}

.contact-thumb {
    width: clamp(150px, 15vw, 180px);
    height: clamp(150px, 15vw, 180px);
    border-radius: 15px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.tiny-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.accent-text {
    color: var(--accent-yellow);
}

/* Form */
.custom-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 12px;
    padding: 12px;
}

.custom-input:focus {
    box-shadow: 0 0 0 3px rgba(212, 140, 28, 0.25);
    border-color: var(--accent-yellow) !important;
}

/* Buttons */
.btn-custom {
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-explore {
    background: var(--accent-yellow);
    color: white;
    border: none;
}

.btn-custom:hover {
    background: var(--accent-yellow);
    transform: translateY(-8px);
    filter: brightness(0.7);
    color: white;
}

@media (max-width: 991px) {
    .welcome-text {
        text-align: center;
    }
}