/* =================================================================
   MODERN HERO CARD - Clean, Professional, Responsive
   ================================================================= */

/* Utility Classes */
.text-orange {
    color: #ff6600;
    font-weight: 900;
}

.min-vh-90 {
    min-height: 90vh;
}

/* Hero Modern Card */
.hero-modern-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 102, 0, 0.25);
    border-radius: 30px;
    padding: calc(2rem + 2vw) calc(1.5rem + 1vw);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 102, 0, 0.1);
}

/* Hero Main Title - Using calc() for responsive sizing */
.hero-main-title {
    font-size: calc(2rem + 3vw);
    line-height: 1.2;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: calc(1rem + 0.5vw);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Simple Feature Boxes */
.simple-feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 15px;
    padding: calc(1rem + 0.5vw);
    transition: all 0.3s ease;
    height: 100%;
}

.simple-feature-box:hover {
    background: rgba(255, 102, 0, 0.05);
    border-color: #ff6600;
    transform: translateY(-3px);
}

.simple-feature-box p {
    color: #fff;
    font-size: calc(0.85rem + 0.15vw);
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-modern-card {
        padding: 2.5rem 1.5rem;
    }

    .hero-main-title {
        font-size: calc(1.8rem + 2vw);
    }
}

@media (max-width: 768px) {
    .hero-modern-card {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }

    .hero-main-title {
        font-size: calc(1.5rem + 2vw);
        margin-bottom: 1rem !important;
    }

    .hero-subtitle {
        font-size: calc(0.95rem + 0.3vw);
        margin-bottom: 2rem !important;
    }

    .simple-feature-box {
        padding: 1rem 0.75rem;
    }

    .simple-feature-box i {
        font-size: 1.5rem !important;
    }

    .simple-feature-box p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-modern-card {
        padding: 1.5rem 1rem;
    }

    .hero-main-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}