/* CSS Styles for SEO-optimized OnlineTrack.net Home Page - Continued */

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 12px;
}

.badge-text {
    line-height: 1;
}

/* Carriers Section */
.carriers-section {
    padding: 80px 0 0;
    background-color: var(--light-bg);
    position: relative;
}

.carriers-section::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    clip-path: ellipse(50% 20px at 50% 20px);
}

.carriers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.carrier-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carrier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.carrier-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.carrier-logo img {
    max-height: 100%;
    max-width: 120px;
}

.carrier-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.carrier-card p {
    color: var(--gray-text);
    margin-bottom: 0;
    font-size: 15px;
}

.carriers-more-info {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.text-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.arrow-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 5px;
}

.text-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    padding: 30px 0;
    background-color: #fff;
}

.features-intro {
    font-size: 18px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-icon {
    font-size: 32px;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.feature-text h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.feature-text p {
    margin: 0;
    color: var(--gray-text);
}

.features-image {
    position: relative;
}

.features-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    width: 70%;
}

.features-card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
}

/* Tracking Info Section */
.tracking-info-section {
    padding: 30px 0;
    background-color: var(--light-bg);
}

.tracking-statuses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.status-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.status-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 5px;
}

.status-pending {
    background-color: var(--warning-color);
}

.status-transit {
    background-color: var(--info-color);
}

.status-customs {
    background-color: var(--gray-text);
}

.status-delivery {
    background-color: var(--primary-color);
}

.status-delivered {
    background-color: var(--success-color);
}

.status-exception {
    background-color: var(--danger-color);
}

.status-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.status-content p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--gray-text);
}

.tracking-info-note {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
}

/* User Types Section */
.user-types-section {
    padding: 30px 0;
    background-color: #fff;
}

.user-type-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.user-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.user-type-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.user-type-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.user-type-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.benefit-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.benefit-list li {
    margin-bottom: 10px;
    color: var(--secondary-color);
    position: relative;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* FAQ Section */
.faq-section {
    padding: 30px 0;
    background-color: var(--light-bg);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 17px;
    padding-right: 30px;
}

.faq-toggle {
    font-size: 22px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--gray-text);
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--ast-global-color-1);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 30px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    min-width: 180px;
    backdrop-filter: blur(5px);
}

.cta-badge-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-badge-text {
    font-weight: 600;
}

@media (min-width: 992px) {
	.site-content .ast-container {
		display: block;
	}
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .carriers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .features-card {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
/*         padding: 60px 0; */
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .carriers-section::after {
        display: none;
    }
    
    .tracking-statuses {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

.img-logo {
	max-width: 400px;
	margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-content {
        width: 50%;
	}
	.img-logo {
		position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
		max-width: none;
	}
	.ast-row {
		position:relative;
	}
	
	.hero-stats,
	.hero-badges {
		text-align: center;
	}
}

/* Additional Modern Design Elements */
.blur-bg {
    position: relative;
    overflow: hidden;
}

.blur-bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
    z-index: -1;
}



/* FAQ JavaScript */
/*
document.addEventListener('DOMContentLoaded', function() {
    const faqItems = document.querySelectorAll('.faq-question');
    
    faqItems.forEach(item => {
        item.addEventListener('click', function() {
            const parent = this.parentNode;
            const answer = this.nextElementSibling;
            const toggle = this.querySelector('.faq-toggle');
            
            // Check if this FAQ is already open
            const isOpen = toggle.innerHTML === '−';
            
            if (isOpen) {
                answer.style.maxHeight = '0px';
                toggle.innerHTML = '+';
            } else {
                answer.style.maxHeight = answer.scrollHeight + 'px';
                toggle.innerHTML = '−';
            }
        });
    });
    
    // Set initial state - first FAQ open, rest closed
    const firstFAQ = document.querySelector('.faq-question');
    if (firstFAQ) {
        const firstAnswer = firstFAQ.nextElementSibling;
        const firstToggle = firstFAQ.querySelector('.faq-toggle');
        
        firstAnswer.style.maxHeight = firstAnswer.scrollHeight + 'px';
        firstToggle.innerHTML = '−';
    }
});
*/.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all 0.3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}
.wp-block-uagb-advanced-heading.uagb-block-bc84dd20.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-bc84dd20.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-bc84dd20.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-bc84dd20.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
