/*
 * mtan v2 - Custom Component Styles
 */

/* ==================== NAVBAR ==================== */
#mainNav {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(16, 40, 93, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.brand-text {
    color: var(--white);
}

.version-badge {
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    font-weight: 600;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.language-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
}

.language-dropdown .dropdown-item {
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
}

.language-dropdown .dropdown-item.active {
    background: var(--gradient-primary);
    color: white;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(233, 103, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 159, 103, 0.2) 0%, transparent 50%);
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    color: white;
    padding-top: 5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-apps {
    margin-top: 2rem;
}

.apps-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

.apps-icons {
    gap: 0.75rem;
}

.app-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.app-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: white;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.device-mockup {
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.device-mockup::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #0a0a0a;
    border-radius: 0 0 1rem 1rem;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    border-radius: 1.5rem;
    overflow: hidden;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.app-body {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-item {
    height: 80px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-1 {
    top: 15%;
    left: 0;
    animation-delay: 0s;
}

.card-1 i {
    background: var(--gradient-accent);
}

.card-2 {
    top: 40%;
    right: 0;
    animation-delay: 0.5s;
}

.card-2 i {
    background: var(--gradient-primary);
}

.card-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.card-3 i {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-link:hover {
    opacity: 1;
    color: white;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* ==================== ABOUT SECTION ==================== */
.about-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.card-icon.icon-teacher {
    background: var(--gradient-accent);
}

.card-icon.icon-org {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}

.about-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--light-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.feature-list li i {
    color: var(--success);
    font-size: 0.875rem;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    background: var(--light-bg);
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.feature-icon.icon-security {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.feature-icon.icon-video {
    background: var(--gradient-accent);
}

.feature-icon.icon-pdf {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.feature-icon.icon-storage {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.feature-icon.icon-lang {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.feature-icon.icon-access {
    background: linear-gradient(135deg, #EC4899, #DB2777);
}

.feature-icon.icon-analytics {
    background: linear-gradient(135deg, #10B981, #059669);
}

.feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--light-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==================== PLATFORMS SECTION ==================== */
.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.flutter-card {
    border-top-color: #02569B;
}

.laravel-card {
    border-top-color: #FF2D20;
}

.nestjs-card {
    border-top-color: #E0234E;
}

.go-card {
    border-top-color: #00ADD8;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #02569B, #0175C2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.platform-icon.icon-laravel {
    background: linear-gradient(135deg, #FF2D20, #CC2419);
}

.platform-icon.icon-nestjs {
    background: linear-gradient(135deg, #E0234E, #B91C3C);
}

.platform-icon.icon-go {
    background: linear-gradient(135deg, #00ADD8, #0090B5);
}

.platform-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.platform-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: rgba(2, 86, 155, 0.1);
    color: #02569B;
    font-weight: 500;
}

.platform-description {
    color: var(--light-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--grey-100);
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.platform-list li i {
    color: var(--success);
}

/* ==================== ARCHITECTURE SECTION ==================== */
.architecture-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.architecture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(66, 85, 164, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(233, 103, 255, 0.1) 0%, transparent 50%);
}

.text-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.architecture-diagram {
    position: relative;
    z-index: 1;
}

.layer-label {
    margin-bottom: 1rem;
}

.layer-label .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.arch-node {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text);
    min-width: 100px;
    transition: all 0.3s ease;
}

.arch-node:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.arch-node i {
    font-size: 1.5rem;
}

.arch-node span {
    font-size: 0.8rem;
    font-weight: 500;
}

.client-node {
    border-color: var(--primary);
}

.api-node {
    border-color: var(--accent);
}

.grpc-node {
    border-color: var(--highlight);
}

.laravel-node {
    border-color: #FF2D20;
}

.go-node {
    border-color: #00ADD8;
}

.db-node {
    border-color: var(--success);
}

.storage-node {
    border-color: var(--warning);
}

.cache-node {
    border-color: var(--info);
}

.connection-line {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

/* Data Flow */
.data-flow {
    position: relative;
    z-index: 1;
}

.flow-step {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.flow-step h6 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: var(--dark-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==================== LANGUAGES SECTION ==================== */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.language-item {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.language-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.lang-code {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(66, 85, 164, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.lang-name {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 0 0 5rem;
    background: var(--light-bg);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 159, 103, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.cta-box .btn-light {
    background: white;
    color: var(--primary-dark);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cta-box .btn-light:hover {
    background: var(--accent);
    color: white;
}

/* ==================== CONTACT SECTION ==================== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h6 {
    font-size: 0.875rem;
    color: var(--light-text-secondary);
    margin-bottom: 0.25rem;
}

.contact-details p {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 0;
}

.contact-form .form-control {
    background: white;
}

.contact-form textarea {
    resize: none;
}

/* ==================== FOOTER ==================== */
.footer-section {
    background: var(--primary-dark);
    color: white;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-brand .brand-logo {
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    padding: 5rem 0;
}

.how-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.how-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.how-card .card-icon.icon-teacher {
    background: var(--gradient-accent);
}

.how-card .card-icon.icon-org {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}

.how-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.how-card p {
    color: var(--light-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

/* ==================== FEATURES NOW SECTION ==================== */
.features-now {
    background: var(--light-bg);
    padding: 5rem 0;
}

.feature-now-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-now-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-now-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.feature-now-card .feature-icon.icon-offline {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.feature-now-card .feature-icon.icon-tracking {
    background: linear-gradient(135deg, #10B981, #059669);
}

.feature-now-card .feature-icon.icon-multi {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.feature-now-card .feature-icon.icon-video {
    background: var(--gradient-accent);
}

.feature-now-card .feature-icon.icon-pdf {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.feature-now-card .feature-icon.icon-access {
    background: linear-gradient(135deg, #EC4899, #DB2777);
}

.feature-now-card .feature-icon.icon-admin {
    background: linear-gradient(135deg, #F97316, #EA580C);
}

.feature-now-card h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.feature-now-card p {
    color: var(--light-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==================== COMING SOON SECTION ==================== */
.coming-soon-section {
    padding: 5rem 0;
}

.coming-badge {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
}

.coming-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.coming-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(255, 159, 103, 0.2);
}

.coming-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.coming-icon.icon-advanced {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.coming-icon.icon-org {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.coming-label {
    display: inline-block;
    background: rgba(255, 159, 103, 0.15);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.coming-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.coming-card p {
    color: var(--light-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.coming-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coming-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.coming-features li i {
    color: var(--success);
}

/* ==================== DOWNLOAD SECTION ==================== */
.download-section {
    background: var(--dark-bg);
    /* position: relative; */
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(66, 85, 164, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(233, 103, 255, 0.1) 0%, transparent 50%);
}

.download-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.download-card.available {
    border-color: var(--success);
}

.download-card.available:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.download-card.coming {
    opacity: 0.7;
}

.download-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0078D4, #005A9E);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.download-icon.icon-android {
    background: linear-gradient(135deg, #3DDC84, #2FA866);
}

.download-icon.icon-mac {
    background: linear-gradient(135deg, #555555, #333333);
}

.download-icon.icon-linux {
    background: linear-gradient(135deg, #FCC624, #333333);
}

.download-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.available {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.status-badge.coming {
    background: rgba(255, 159, 103, 0.2);
    color: var(--accent);
}

.stores-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.store-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
}

.store-item.coming-soon-store {
    opacity: 0.6;
}

.store-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.store-info {
    display: flex;
    flex-direction: column;
}

.store-name {
    color: white;
    font-weight: 500;
}

.store-status {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ==================== ADMIN NOTE SECTION ==================== */
.admin-note-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.admin-note-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.admin-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.admin-note-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.admin-note-card p {
    color: var(--light-text-secondary);
    margin-bottom: 1rem;
}

.admin-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.admin-features li i {
    color: var(--success);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        height: 400px;
        margin-top: 2rem;
    }

    .device-mockup {
        width: 220px;
        height: 380px;
    }

    .floating-card {
        display: none;
    }

    .cta-box {
        padding: 2rem;
        text-align: center;
    }

    .cta-box .text-lg-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }

    .admin-icon {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .platform-card {
        padding: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .arch-node {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }

    .arch-node i {
        font-size: 1.25rem;
    }

    .arch-node span {
        font-size: 0.7rem;
    }

    .admin-note-card {
        padding: 1.5rem;
        text-align: center;
    }
}

/* ==================== SEE MORE BUTTON ==================== */
.see-more-btn {
    background: linear-gradient(135deg, #ff7b38 0%, #d65aeb 100%);
    /* Darker version of accent colors */
    border: none;
    padding: 1.1rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 123, 56, 0.5), 0 0 0 4px rgba(255, 123, 56, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.see-more-btn:hover::before {
    left: 100%;
}

.see-more-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 123, 56, 0.7), 0 0 0 6px rgba(255, 123, 56, 0.3);
    color: white;
}

.see-more-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.see-more-btn:focus {
    outline: none;
    box-shadow: 0 10px 30px rgba(255, 123, 56, 0.5), 0 0 0 4px rgba(255, 123, 56, 0.4);
}

.see-more-btn i {
    transition: all 0.3s ease;
}

.see-more-btn:hover i:first-child {
    animation: rocket-bounce 0.5s ease infinite;
}

.see-more-btn:hover i:last-child {
    transform: translateX(8px);
}

@keyframes rocket-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* ==================== VIEW ALL FEATURES BUTTON ==================== */
.view-features-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.view-features-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.view-features-btn:hover::before {
    width: 100%;
}

.view-features-btn:hover {
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(66, 85, 164, 0.3);
}

.view-features-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.view-features-btn i {
    transition: all 0.3s ease;
}

.view-features-btn:hover i:last-child {
    transform: translateX(8px);
}

/* ==================== MOBILE NAVIGATION FIXES ==================== */
@media (max-width: 991.98px) {

    /* 1. Style the Collapsible Container (The Menu Box) */
    #navbarNav {
        background: rgba(16, 40, 93, 0.98);
        /* Deep primary dark color */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 1.5rem;
        border-radius: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    }

    /* 2. Style the Links */
    .navbar-nav {
        text-align: center;
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-radius: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.05);
        color: var(--accent) !important;
    }

    /* Remove the bottom underline animation on mobile as it looks messy */
    .nav-link::after {
        display: none;
    }

    /* 3. CTA Buttons Area */
    .nav-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-cta .btn {
        width: 100%;
        /* Full width buttons for easier tapping */
        justify-content: center;
        padding: 0.75rem;
    }

    /* 4. Language Dropdown Fix */
    .language-dropdown {
        margin: 1rem 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .language-dropdown .btn {
        width: 100%;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .language-dropdown .dropdown-menu {
        position: static !important;
        /* Forces it to flow within the menu */
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
    }

    .language-dropdown .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.75rem;
    }

    .language-dropdown .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent);
    }

    /* 5. Hamburger Toggler Styling */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        color: white;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        background: rgba(255, 255, 255, 0.2);
    }
}

.brand-logo-svg {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover .brand-logo-svg,
.footer-brand:hover .brand-logo-svg {
    transform: scale(1.1);
}

/* ==================== NAVBAR BRAND ==================== */

.navbar-brand,
.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 2rem;
    /* Larger text size */
}

/* The Text "mtan" */
.brand-text {
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
}

/* The Image Logo */
.brand-logo-img {
    height: 42px;
    /* Adjust this height to match your font size */
    width: auto;
    /* Maintains aspect ratio */
    object-fit: contain;
    display: block;
}

/* The "v2" Badge */
.version-badge {
    background: var(--accent);
    /* Orange */
    color: white;
    font-size: 0.9rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(255, 159, 103, 0.3);
}

/* Remove old styles if present */
.logo-icon {
    display: none;
}

/* ==================== NAVBAR BRAND ==================== */

.navbar-brand,
.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 2rem;
    /* Larger text size */
}

/* The Text "mtan" */
.brand-text {
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
}

/* The Image Logo */
.brand-logo-img {
    height: 32px;
    /* Adjust this height to match your font size */
    width: auto;
    /* Maintains aspect ratio */
    object-fit: contain;
    display: block;
}

/* The "v2" Badge */
.version-badge {
    background: var(--accent);
    /* Orange */
    color: white;
    font-size: 0.9rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(255, 159, 103, 0.3);
}

/* Remove old styles if present */
.logo-icon {
    display: none;
}

.app-header {
    /* Ensures the logo and text are vertically centered */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Space between logo and text */
}
