/**
 * Frank Truck - Custom Styles
 */

/* Variables */
:root {
    --primary-color: #f8b500;
    --primary-dark: #d69e00;
    --secondary-color: #333333;
    --text-color: #666666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* Language Switcher */
.lang-switcher ul {
    display: flex;
    gap: 10px;
}

.lang-switcher ul li a {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-switcher ul li.active a,
.lang-switcher ul li a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li + li::before {
    content: "/";
    padding: 0 8px;
}

/* Hero Slider */
.slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05);
    z-index: 1;
}

.slider .tp-caption {
    z-index: 2;
}

.slider h1 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.slider h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-color);
}

.slider .slide-desc {
    font-size: 18px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.slider-btn {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    padding: 15px 40px !important;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* Model Cards */
.model-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
}

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

.model-card-image {
    position: relative;
    overflow: hidden;
}

.model-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.model-card:hover .model-card-image img {
    transform: scale(1.05);
}

.model-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.model-card:hover .model-card-overlay {
    opacity: 1;
}

.model-card-content {
    padding: 25px;
}

.model-card-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.model-card-content p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.model-card-price {
    font-size: 18px;
    color: var(--primary-color);
}

.model-card-price strong {
    font-size: 24px;
    color: var(--secondary-color);
}

.model-card-price small {
    display: block;
    font-size: 12px;
    color: var(--text-color);
}

/* In Stock CTA */
.in-stock-cta {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 5px;
}

.in-stock-cta h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.in-stock-cta p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.cta-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-content p {
    color: #fff;
    font-size: 18px;
}

.cta-btn {
    padding-top: 20px;
}

/* Service Box */
.service-box {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.service-box h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-box p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-box .read-more {
    color: var(--primary-color);
    font-weight: 600;
}

/* Model Detail - Gallery */
.model-gallery {
    margin-bottom: 30px;
}

.main-image-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.main-image-wide {
    max-height: 900px;
}

.main-image-wide .main-gallery-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main-gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Model Configurator */
.model-configurator {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.model-configurator h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.config-group {
    margin-bottom: 25px;
}

.config-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.config-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.config-option {
    flex: 1;
    min-width: 100px;
    margin: 0;
}

.config-option-full {
    flex: 1 1 100%;
}

.config-option-full .option-label {
    cursor: default;
}

.config-option input {
    display: none;
}

.config-option .option-label {
    display: block;
    padding: 12px 15px;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.config-option input:checked + .option-label {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    color: var(--secondary-color);
}

.config-option:hover .option-label {
    border-color: var(--primary-color);
}

.interior-display {
    background: var(--light-bg);
    padding: 12px 15px;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
}

.interior-value {
    font-weight: 500;
    color: var(--secondary-color);
}

.config-price-display {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 25px;
}

.price-label {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-placeholder {
    color: var(--text-color);
    font-size: 18px;
    font-weight: normal;
}

.price-notice {
    font-size: 12px;
    color: var(--text-color);
    margin-top: 5px;
}

.config-features {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.config-features h5 {
    margin-bottom: 15px;
}

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

.features-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.features-list li:before {
    content: '\ea4e';
    font-family: 'icofont';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* In Stock Items */
.in-stock-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.in-stock-image {
    position: relative;
}

.in-stock-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.in-stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.in-stock-content {
    padding: 20px;
}

.in-stock-content h4 {
    margin-bottom: 10px;
}

.in-stock-specs {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.in-stock-specs li {
    padding: 5px 0;
    font-size: 14px;
}

.in-stock-price {
    margin-bottom: 15px;
}

.in-stock-price strong {
    font-size: 24px;
    color: var(--primary-color);
}

.in-stock-price small {
    display: block;
    color: var(--text-color);
    font-size: 12px;
}

/* Other Models Section */
.other-model-link {
    display: block;
    text-decoration: none;
}

.other-model-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.other-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.other-model-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.other-model-card h5 {
    padding: 15px;
    margin: 0;
    text-align: center;
    color: var(--secondary-color);
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    min-height: 280px;
}

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

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card .service-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

/* Forms */
.form-section {
    background: var(--white);
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.form-section h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Form styling - removed old wrappers, using .contact class from template */
.form-section {
    margin-bottom: 30px;
}

.form-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.date-label {
    display: block;
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

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

.form-check-group .form-check {
    display: flex;
    align-items: flex-start;
    padding-left: 0;
}

.form-check-input {
    margin-left: 0px !important;
}

.form-check-group .form-check-input {
    margin-right: 10px;

    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.form-check-group .form-check-label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.form-check-group .form-check-label a {
    color: var(--primary-color);
}

/* Privacy Policy */
.privacy-content {
    background: var(--white);
    padding: 40px;
    border-radius: 5px;
}

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.privacy-section h4 {
    margin-bottom: 15px;
    margin-top: 15px;
}

.privacy-section ul {
    padding-left: 20px;
    list-style-type: square !important;
}

.privacy-section ul li {
    margin-bottom: 8px;
    list-style-type: square !important;
}

/* Footer */
.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

.footer-contact-item p {
    margin: 0;
}

/* Quote Modal */
#quoteModal .form-check-input {
margin-left: 0 !important;
}

.quote-config-summary {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
}

.quote-config-summary h6 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .slider h1 {
        font-size: 48px;
    }
    
    .slider h2 {
        font-size: 24px;
    }
    
    .main-gallery-image {
        height: 300px;
    }
    
    .model-configurator {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .slider h1 {
        font-size: 36px;
    }
    
    .slider h2 {
        font-size: 20px;
    }
    
    .slider .slide-desc {
        font-size: 14px;
    }
    
    .config-options {
        flex-direction: column;
    }
    
    .config-option {
        width: 100%;
    }
    
    .cta-content,
    .cta-btn {
        text-align: center;
    }
}

/* Service Pages */
.single-service {
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}

.single-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.single-service-img {
    position: relative;
    overflow: hidden;
}

.single-service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-service:hover .single-service-img img {
    transform: scale(1.05);
}

.single-service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.single-service-icon i {
    font-size: 36px;
    color: var(--white);
}

.single-service-info {
    padding: 25px;
}

.single-service-info h6 {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.single-service-info h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.single-service-info p {
    color: #666;
    margin-bottom: 20px;
}

.serv-red-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.serv-red-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

/* Service Detail Sidebar */
.sidebar-left {
    padding-right: 30px;
}

.sidebar-padding-left {
    padding-left: 30px;
}

.widget {
    margin-bottom: 30px;
    background: #f8f8f8;
    padding: 25px;
}

.widget-title {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

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

.servies_wid ul li {
    border-bottom: 1px solid #eee;
}

.servies_wid ul li:last-child {
    border-bottom: none;
}

.servies_wid ul li a {
    display: block;
    padding: 12px 15px;
    color: #666;
    transition: all 0.3s ease;
}

.servies_wid ul li a:hover,
.servies_wid ul li.active a {

    color: var(--white);
    text-decoration: none;
    padding-left: 20px;
}

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

.contact_wid ul li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.contact_wid ul li:last-child {
    border-bottom: none;
}

.contact_wid ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact_wid ul li a {
    color: var(--primary-color);
}

.cta_wid {
    background: var(--primary-color);
    text-align: center;
}

.cta_wid .btn {
    background: var(--secondary-color);
    border: none;
    color: var(--white);
}

.cta_wid .btn:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Service Detail Content */
.service-detail-content .service-header {
    text-align: center;
    margin-bottom: 30px;
}

.service-detail-content .service-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-detail-content .service-icon i {
    font-size: 48px;
    color: var(--white);
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-content .theme-list-style-two {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-content .theme-list-style-two li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px dashed #eee;
}

.service-content .theme-list-style-two li:before {
    content: '\f00c';
    font-family: 'IcoFont';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-content .cooperation-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    counter-reset: step-counter;
}

.service-content .cooperation-steps li {
    position: relative;
    padding: 15px 0 15px 60px;
    border-bottom: 1px dashed #eee;
    counter-increment: step-counter;
}

.service-content .cooperation-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* CTA Section */
/* Page Title Area - reduced padding */
.single-page-title-area {
    padding: 50px 0;
}

.calltoaction-two-padding {
    padding: 50px 0;
}

.calltoaction-two-wrap h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.calltoaction-two-wrap p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.calltoaction-two-btn {
    display: inline-block;
    background: var(--white);
    color: var(--secondary-color);
    padding: 15px 35px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calltoaction-two-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 991px) {
    .sidebar-left {
        padding-right: 15px;
        margin-bottom: 30px;
    }
    
    .sidebar-padding-left {
        padding-left: 15px;
    }
}
