/* Clean Modern Hero Styles */

/* Transparent Navigation Bar */
.navbar {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Header Contact Info */
.nav-contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    margin-right: 0.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #ffffff !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-phone:hover {
    color: #ff6b35 !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-phone i {
    font-size: 1.1rem;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #ff6b35;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.nav-link:hover {
    color: #ff6b35 !important;
}

.nav-link.active {
    color: #ff6b35 !important;
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: none;
}

.dropdown-menu a {
    color: #ffffff !important;
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35 !important;
}

/* Hero Content Wrapper - Centered */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

/* Hero Title - Formal Style */
.hero-title {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Orange gradient for "Future" */
.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #eae4dd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle - Clean and Bold */
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
}

/* Hero CTA - Centered */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Brighter Hero Overlay */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* Mobile Navigation */
.mobile-menu {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.mobile-nav-list a {
    color: #ffffff !important;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.mobile-nav-list a:hover {
    color: #ff6b35 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-contact-info {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .nav-phone span {
        display: none;
    }
    
    .nav-phone {
        padding: 0.5rem;
    }
}