/* Hero Section Styles */

/* Hero Section Base Layout */
.hero-section {
    padding: 2rem 0;
}

.hero-section .row {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-section__text p {
    margin-bottom: 0.5rem;
}

.hero-section__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-section__button {
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section__button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Desktop Layout */
@media (min-width: 992px) {
    .header_left {
        padding-right: 2rem;
    }
    
    .header_right {
        text-align: center;
    }
}
@media (min-width: 1400px) {
    .hero-section__image {
        justify-content: center !important;
    }
    .hero-section__image img {
        max-width: 520px !important;
        margin-right: 0 !important;
    }
    .hero-section__container {
        gap: 2.5rem !important;
    }
}

/* Hero Section Icon Styling */
.hero-section__button i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.hero-section__button:hover i {
    transform: translateX(1px) scale(1.05);
}

/* Bootstrap-based Hero Section Layout */
.hero-section .container {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
}

.hero-section .row {
    min-height: 410px;
    align-items: center;
}

.header_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header_right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.header_right img, .hero-section__image img {
    max-width: 410px;
    width: 100%;
    height: auto;
    border-radius: 2rem;
    object-fit: cover;
    margin-top: 0;
}

.button_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Hero section buttons styling is handled inline */

/* Mobile-First Responsive Styles */

/* Mobile styles (default) - Image on top, content below */
@media (max-width: 991.98px) {
    .hero-section .row {
        min-height: auto;
    }
    
    .header_left {
        text-align: center;
        padding-top: 1rem;
        order: 2;
    }
    
    .header_right {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .hero-section__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-section__text {
        margin-bottom: 1.5rem;
    }
    
    .hero-section__buttons,
    .button_wrapper {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-section__button {
        width: 200px;
        text-align: center;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section__title {
        font-size: 2rem;
    }
    
    .hero-section__buttons,
    .button_wrapper {
        flex-direction: row;
        gap: 1rem;
    }
    
    .header_right {
        margin-bottom: 2rem;
    }
}

/* Mobile Hero Section Styles */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .hero-section__title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .header_right img, 
    .hero-section__image img {
        max-width: 100%;
        margin-top: 0;
    }
    
    .header_left {
        padding-top: 1rem;
    }
    
    .hero-section__buttons,
    .button_wrapper {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-section__button {
        width: 180px;
        text-align: center;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
}