/* Store buttons */
.mil-store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: flex-start;
    align-items: center;
}

.mil-store-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Store logo image style */
.store-logo {
    object-fit: contain;
    height: 50px;
    max-width: 150px;
    transition: all 0.3s ease;
}

.mil-store-button:hover .store-logo {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Responsive styles for store logos */
@media screen and (max-width: 768px) {
    .mil-store-buttons {
        gap: 15px;
        justify-content: center;
    }
    
    .store-logo {
        height: 40px;
        max-width: 120px;
    }
}

@media screen and (max-width: 480px) {
    .mil-store-buttons {
        gap: 10px;
    }
    
    .store-logo {
        height: 30px;
        max-width: 100px;
    }
}

@media screen and (min-width: 1921px) {
    .store-logo {
        height: 60px;
        max-width: 180px;
    }
}

/* Footer logo */
.footer-logo {
    object-fit: contain;
    max-width: 220px;
    height: 50px;
    transition: all 0.3s ease;
}

/* Footer store logos */
.footer-store-logo {
    object-fit: contain;
    height: 40px;
    max-width: 120px;
    transition: all 0.3s ease;
}

.mil-social {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
}

.mil-social-item {
    margin: 0 10px 10px 0;
}

.mil-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.mil-social-link:hover {
    background-color: #298b76;
    transform: translateY(-3px);
}

/* Footer address styles */
.footer-address {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Responsive styles for footer */
@media screen and (max-width: 768px) {
    .footer-logo {
        max-width: 180px;
        height: 40px;
    }
    
    .footer-store-logo {
        height: 32px;
        max-width: 100px;
    }
    
    .mil-social-link {
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-width: 480px) {
    .footer-logo {
        max-width: 150px;
        height: 35px;
    }
    
    .footer-store-logo {
        height: 28px;
        max-width: 90px;
    }
    
    .mil-social-link {
        width: 32px;
        height: 32px;
    }
    
    .mil-social {
        justify-content: center;
    }
}

@media screen and (min-width: 1921px) {
    .footer-logo {
        max-width: 260px;
        height: 60px;
    }
    
    .footer-store-logo {
        height: 46px;
        max-width: 140px;
    }
    
    .mil-social-link {
        width: 46px;
        height: 46px;
    }
}

/* Features */
.mil-feature-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: transform 0.3s;
}

.mil-feature-item:hover {
    transform: translateY(-5px);
}

.mil-feature-item .mil-icon {
    width: 60px;
    height: 60px;
}

/* Video section */
.mil-video-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.mil-video {
    width: 100%;
    border-radius: 15px;
}

/* Testimonials */
.mil-testimonial-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    position: relative;
}

.mil-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    opacity: 0.1;
}

/* Partners slider */
.mil-partners-frame {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

.mil-partners-slider img {
    max-height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mil-partners-slider img:hover {
    opacity: 1;
}

/* Features page specific styles */
.mil-illustration-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mil-illustration-frame img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.mil-illustration-frame:hover img {
    transform: scale(1.05);
}

.mil-list {
    list-style: none;
    padding: 0;
}

.mil-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.mil-list.mil-dark li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.mil-list.mil-light li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.mil-center-box {
    text-align: center;
}

.mil-buttons-frame {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

/* Responsive table styles */
.mil-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    border-radius: 10px;
}

.mil-assets-table {
    width: 100%;
    border-collapse: collapse;
}

.mil-assets-table th,
.mil-assets-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mil-assets-table th {
    background-color: rgba(41, 139, 118, 0.1);
    font-weight: 600;
}

.mil-assets-table tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Asset cards for mobile */
.mil-assets-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

.mil-asset-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

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

.mil-asset-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mil-asset-name {
    font-weight: 600;
    font-size: 16px;
}

.mil-asset-type {
    background-color: rgba(41, 139, 118, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.mil-asset-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mil-detail-label {
    font-size: 14px;
    opacity: 0.7;
}

.mil-detail-value {
    font-weight: 500;
}

.mil-asset-card-footer {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.mil-button-sm {
    padding: 6px 10px;
    font-size: 12px;
}

/* Responsive adjustments */
@media screen and (min-width: 768px) {
    .mil-assets-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .mil-assets-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ styles */
.mil-tabs-frame {
    position: relative;
}

.mil-tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.mil-tabs-nav a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mil-tabs-nav a.mil-active {
    opacity: 1;
}

.mil-tabs-nav a.mil-active:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.mil-tab-content {
    display: none;
    padding-top: 30px;
}

.mil-tab-content.mil-active {
    display: block;
}

.mil-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.mil-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.mil-accordion-header h6 {
    margin: 0;
}

.mil-accordion-body {
    display: none;
    padding: 0 0 20px;
}

.mil-accordion-item.mil-active .mil-accordion-body {
    display: block;
}

.mil-accordion-item.mil-active .mil-icon i {
    transform: rotate(45deg);
}

.mil-icon i {
    transition: transform 0.3s;
}

/* Contact page styles */
.mil-contact-info {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    height: 100%;
}

.mil-form-group {
    position: relative;
}

.mil-form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
}

.mil-form-group input,
.mil-form-group textarea,
.mil-form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.mil-form-group input:focus,
.mil-form-group textarea:focus,
.mil-form-group select:focus {
    border-color: var(--accent-color);
    outline: none;
}

.mil-map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.mil-social-frame {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mil-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.mil-social-icon:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
}

/* Blog styles */
.mil-featured-post {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
}

.mil-cover-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.mil-cover-frame img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.mil-cover-frame:hover img {
    transform: scale(1.05);
}

.mil-labels {
    display: flex;
    gap: 15px;
}

.mil-label {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.mil-label.mil-accent {
    background: var(--accent-color);
}

.mil-filter-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mil-filter-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mil-filter-links a:hover,
.mil-filter-links a.mil-active {
    opacity: 1;
}

.mil-pagination {
    text-align: center;
    margin-top: 60px;
}

.mil-pagination-frame {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.mil-page {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.mil-page:hover,
.mil-page.mil-active {
    background: var(--accent-color);
}

.mil-subscribe-form {
    display: flex;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.mil-subscribe-form input {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.mil-subscribe-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Market Insights styles */
.mil-market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mil-market-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.mil-market-label {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.mil-market-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.mil-market-change {
    font-size: 14px;
}

.mil-market-change.mil-up {
    color: #4CAF50;
}

.mil-market-change.mil-down {
    color: #f44336;
}

.mil-calendar-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin-bottom: 15px;
}

.mil-event-time {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.mil-analysis-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
}

.mil-analysis-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mil-analysis-content {
    padding: 20px;
}

.mil-chart-frame {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.mil-chart-frame img {
    width: 100%;
    height: auto;
}

.mil-prediction-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
}

.mil-prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mil-confidence {
    font-size: 14px;
    color: var(--accent-color);
}

.mil-updates-ticker {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 10px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

/* Support Center styles */
.mil-search-box {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 15px;
}

.mil-search-box input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.mil-search-box input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.mil-support-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
}

.mil-support-card:hover {
    transform: translateY(-5px);
}

.mil-support-card .mil-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.mil-topics-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

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

.mil-topics-list li {
    margin-bottom: 15px;
}

.mil-topics-list a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mil-topics-list a:hover {
    opacity: 1;
}

.mil-support-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
}

.mil-contact-method {
    text-align: center;
}

.mil-contact-method i {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.mil-contact-method h6 {
    margin-bottom: 10px;
}

.mil-contact-method a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mil-contact-method a:hover {
    opacity: 1;
}

/* Advertising page styles */
.mil-stat-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
}

.mil-stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.mil-ad-format-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s;
}

.mil-ad-format-card:hover {
    transform: translateY(-5px);
}

.mil-ad-format-card .mil-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.mil-ad-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mil-ad-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.mil-ad-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.mil-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 20px;
}

.mil-targeting-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

.mil-targeting-item h5 {
    margin-bottom: 15px;
}

.mil-targeting-item p {
    opacity: 0.7;
} 