/* Hero Section Base Styles */
.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url('../images/slider/varanasi-tourism.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 0 40px;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Hero Content */
.hero-badge {
    background: #FF4E2B;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 85px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    font-weight: 500;
}

.btn-hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-hero-cta:hover {
    background: #FF4E2B;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,78,43,0.3);
}

/* Enquiry Form Card */
.hero-form-card {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.form-tagline {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.hero-form .form-control {
    height: 55px;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 0 25px 0 50px;
    font-size: 15px;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.hero-form textarea.form-control {
    padding-top: 15px;
    height: 100px;
}

.hero-form .form-control:focus {
    border-color: #FF4E2B;
    box-shadow: 0 0 15px rgba(255,78,43,0.1);
    background-color: #fff;
}

.hero-form .form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-form textarea ~ .form-icon {
    top: 25px;
}

.hero-form .form-control:focus ~ .form-icon {
    color: #FF4E2B;
}

.btn-submit-hero {
    width: 100%;
    height: 60px;
    background: #FF4E2B;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,78,43,0.3);
}

.btn-submit-hero:hover {
    background: #e63e1c;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,78,43,0.4);
}

/* Responsiveness */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 65px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 100px 0;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .hero-form-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .btn-hero-cta {
        padding: 14px 30px;
        width: 100%;
    }
}
