body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Remove .home-section as it's replaced by .hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://source.unsplash.com/1920x1080/?anime-landscape') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 76px;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.comparison-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.image-container img {
    width: 100%;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.contact-form {
    padding: 20px;
}

.contact-form .form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

.contact-form textarea.form-control {
    resize: none;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

social-links a:hover {
    color: #007bff !important;
    transform: scale(1.1);
}

.btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 10px;
    }
}

.contact-header {
    padding-top: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../assets/images/hero-bg.jpg') no-repeat center center/cover;
}

.contact-page {
    min-height: 60vh;
}

.gallery-img {
    width: 800px;
    height: 800px;
    object-fit: cover;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card i {
    color: #4a90e2;
}