  
/* Hero Section */
header {
    background-position: center;
    background-size: cover;
    min-height: 80vh;
}

/* Card Hover Effects */
.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

/* Form Styles */
.form-control {
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 125, 22, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        min-height: 60vh;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .btn.w-full {
        padding: 0.75rem 1.5rem;
    }
}