/* Landing Page Specific Styles */

/* Brand Scroll Section */
.scroll-hide::-webkit-scrollbar {
    display: none;
}

.scroll-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.brand-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 100px;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.brand-card i {
    transition: color 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../../assets/images/hero-bg.jpg') no-repeat center center/cover;
    min-height: 85vh;
    /* Increased height slightly */
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 44, 82, 0.7);
    /* Primary color overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Booking Form Card */
.booking-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: #333;
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    /* Increased margin */
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    /* Tighter letter spacing */
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Features / Why Choose Us */
.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: white;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 44, 82, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* Offers Slider */
.offers-section {
    background-color: #f8f9fa;
}

.offer-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: scale(1.02);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: -70px auto 15px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}