/* Hero Section Custom Styles */
#hero {
    position: relative;
    min-height: 70vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(1.35) contrast(1.1) saturate(1.1);
    z-index: 1;
}

.hero-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* Make sure text is selectable */
.hero-content,
.hero-content * {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    pointer-events: auto;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-tag i {
    color: #f85d23;
    margin-right: 8px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-highlight-white,
.hero-highlight-orange {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 2.6rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-highlight-orange {
    color: #ff7730 !important;
}

.hero .lead {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-features li {
    color: #fff !important;
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.hero-features li i {
    color: #f85d23;
    margin-right: 10px;
    font-size: 1.1rem;
    background: rgba(248, 93, 35, 0.15);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background-color: #f85d23;
    border-color: #f85d23;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 15px rgba(248, 93, 35, 0.3);
    z-index: 3;
    position: relative;
}

.hero-buttons .btn-primary:hover {
    background-color: #ff7730;
    transform: translateY(-3px);
}

.hero-buttons .btn-outline-light {
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.35s ease;
    background: rgba(255, 255, 255, 0.15);
    z-index: 3;
    position: relative;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: #f85d23;
    transform: translateY(-3px);
}

/* Fix Floating Button Z-Index */
.fab-buttons {
    z-index: 1000;
    /* Lowered from 10000 to prevent click interference */
}

@media (max-width: 992px) {
    #hero {
        min-height: 65vh;
    }

    .hero-highlight-white,
    .hero-highlight-orange {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    #hero {
        min-height: 60vh;
    }

    .hero-highlight-white,
    .hero-highlight-orange {
        font-size: 1.9rem;
    }
}