/* Additional Styles for Open Service Trucking LLC */
/* FAQ Accordion Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #131644;
    background: #f9f9f9;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f0f4f8;
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: #257bcd;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
}

/* Language Toggle Button */
.lang-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #257bcd;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 123, 205, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-toggle:hover {
    background: #1a5ea8;
    transform: translateY(-2px);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #131644;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(19, 22, 68, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #257bcd;
    transform: translateY(-3px);
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, #131644 0%, #1a2057 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(19, 22, 68, 0.3);
}

.pricing-card h3 {
    color: #257bcd;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 18px;
    opacity: 0.8;
}

.pricing-card .capacity {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.service-feature-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #257bcd;
    transition: transform 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-5px);
}

.service-feature-card h4 {
    color: #131644;
    margin-bottom: 10px;
}

.service-feature-card p {
    color: #666;
    font-size: 14px;
}

/* Blog Post Hover Effects */
.blog-post {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Why Choose Us Section Enhancement */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-box .feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #131644;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #257bcd 0%, #1a5ea8 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary-large {
    background: white;
    color: #257bcd;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-large {
    background: #257bcd;
    color: white;
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #1a5ea8;
}

/* About Page Styles */
.about-section {
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #131644;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mission Vision Section */
.mission-vision {
    background: #f8f9fa;
    padding: 80px 20px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mission-box h3 {
    color: #257bcd;
    margin-bottom: 15px;
}

.mission-box p, .mission-box ul {
    color: #666;
    line-height: 1.8;
}

.mission-box ul {
    list-style: none;
    padding: 0;
}

.mission-box ul li {
    margin-bottom: 10px;
}

/* Benefits Grid */
.why-choose-details {
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.benefit-number {
    font-size: 48px;
    font-weight: bold;
    color: #257bcd;
    margin-bottom: 10px;
}

.benefit-item h3 {
    color: #131644;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
}

/* Team Section */
.our-team {
    background: #f8f9fa;
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-member h3 {
    color: #131644;
    margin: 15px 0 5px;
    padding: 0 15px;
}

.team-member p {
    color: #666;
    padding: 0 15px 20px;
}

/* Certifications */
.certifications {
    padding: 80px 20px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cert-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cert-item h4 {
    color: #257bcd;
    margin-bottom: 10px;
}

.cert-item p {
    color: #666;
    font-size: 14px;
}

/* Services Page */
.services-overview {
    padding: 40px 20px 0;
}

.service-detail {
    padding: 60px 20px;
    border-bottom: 1px solid #eee;
}

.service-detail:nth-child(even) {
    background: #f8f9fa;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-image img,
.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-detail-text h2 {
    color: #131644;
    margin-bottom: 20px;
}

.service-detail-text h3 {
    color: #257bcd;
    margin: 25px 0 15px;
}

.service-detail-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detail-text ul {
    color: #666;
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-text ul li {
    margin-bottom: 8px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #257bcd;
    box-shadow: 0 0 0 3px rgba(37, 123, 205, 0.1);
}

.quote-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-title-section h1 {
        font-size: 32px;
    }
    
    .lang-toggle {
        bottom: 70px;
        right: 15px;
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card .price {
        font-size: 36px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .scroll-top,
    .lang-toggle,
    nav,
    .cta-button,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}
