/* Hero Banner */
.hero-slider-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.hero-slider.flickity-slider {
    width: 100%;
    position: relative !important;
    height: auto !important;
}

.hero-slide {
    width: 100%;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Flickity overrides */
.hero-slider .flickity-button {
    background: rgba(231, 76, 60, 0.8);
}

.hero-slider .flickity-button:hover {
    background: #e74c3c;
}

.hero-slider .flickity-button svg {
    fill: white;
}

.hero-slider .flickity-page-dots {
    bottom: 20px;
}

.hero-slider .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-slider .flickity-page-dots .dot.is-selected {
    background: #e74c3c;
}

/* Why Choose Section */
.why-choose-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.heart-icon {
    color: #e0e0e0;
    margin-right: 10px;
    font-size: 32px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-item {
    background: white;
    padding: 40px 20px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s;
}

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

.why-icon-default {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23e74c3c" stroke-width="3"/><path d="M30 50 L45 65 L70 35" fill="none" stroke="%23000" stroke-width="4"/></svg>') center/contain no-repeat;
}

.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-title {
    font-size: 15px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-content {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 100px;
}

.why-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-link:hover {
    color: #c0392b;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Dealer Info Section */
.dealer-info-section {
    padding: 0;
    background: #f8f9fa;
}

.dealer-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.dealer-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 0;
}

.dealer-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 60px 80px;
}

.dealer-title {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    margin: 0;
}

.dealer-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.dealer-intro strong {
    color: #1a1a1a;
    font-weight: 600;
}

.dealer-contact h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

.dealer-contact li {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.dealer-contact .icon {
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .dealer-container {
        grid-template-columns: 1fr;
    }
}

/* Service Banner Section */
.service-banner-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.service-content-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 80px;
    z-index: 2;
}

.service-content-box {
    background: #1a1a1a;
    padding: 50px 40px;
    max-width: 500px;
    color: white;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.service-text {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
}

.service-btn-red {
    background: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
}

.service-btn-red:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.service-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.service-btn-outline:hover {
    background: white;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .service-content-wrapper {
        padding: 40px 20px;
        justify-content: center;
    }
    
    .service-content-box {
        max-width: 100%;
    }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #fff;
}

.products-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.products-section .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
}

.products-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    text-align: center;
    transition: transform 0.3s;
}

.product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

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

.product-image {
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: auto;
}


.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-fuel {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.product-price span {
    color: #e74c3c;
    font-weight: 700;
    font-size: 16px;
}

.product-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.product-btn:hover,
.product-link:hover .product-btn {
    background: #1a1a1a;
    color: white;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


/* Contact Form */
.contact-form-section {
    width: 100%;
    margin: 0;
    padding: 60px 0;
    background: #fff;
}

.contact-form-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-inner .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.contact-form-inner .section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e74c3c;
    margin: 10px auto 0;
}

.contact-form-inner .section-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form-section .wpcf7 {
    text-align: left;
    position: relative;
}

.contact-form-section .wpcf7 .screen-reader-response {
    position: absolute !important;
    left: -9999px !important;
}

.contact-form-section .wpcf7-form p {
    margin-bottom: 15px;
}

.contact-form-section .wpcf7-form input[type="text"],
.contact-form-section .wpcf7-form input[type="email"],
.contact-form-section .wpcf7-form input[type="tel"],
.contact-form-section .wpcf7-form select,
.contact-form-section .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #666;
    background: #fff;
    line-height: 1.5;
    height: auto;
}

.contact-form-section .wpcf7-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 35px;
}

.contact-form-section .wpcf7-form input::placeholder,
.contact-form-section .wpcf7-form textarea::placeholder {
    color: #999;
}

.contact-form-section .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-section .wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 15px;
    background: #e74c3c;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.contact-form-section .wpcf7-form .wpcf7-submit:hover {
    background: #c0392b;
}

.contact-form-section .wpcf7-form .wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
}

@media (min-width: 769px) {
    .contact-form-section .wpcf7-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .contact-form-section .wpcf7-form .hidden-fields-container {
        display: none;
    }

    .contact-form-section .wpcf7-form p:nth-of-type(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .contact-form-section .wpcf7-form p:nth-of-type(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .contact-form-section .wpcf7-form p:nth-of-type(3) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .contact-form-section .wpcf7-form p:nth-of-type(4) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .contact-form-section .wpcf7-form p:nth-of-type(5),
    .contact-form-section .wpcf7-form p:nth-of-type(6) {
        grid-column: span 2;
    }

    .contact-form-section .wpcf7-form .wpcf7-response-output {
        grid-column: span 2;
    }
}

/* News Section */
.news-section {
    padding: 60px 0 30px;
    background: #fff;
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 28px;
}

.news-section .section-header h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.news-section .section-header h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #e50012;
    margin: 8px auto 0;
}

.news-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: auto !important;
}

.news-slider.flickity-slider {
    position: relative !important;
    height: auto !important;
    left: 0 !important;
}

.news-slider .flickity-viewport {
    height: auto !important;
    overflow: hidden;
}

.news-slider .flickity-slider {
    position: relative !important;
    height: auto !important;
    left: 0 !important;
    display: flex;
}

.news-slide {
    width: 100%;
    padding: 0 10px 20px;
    box-sizing: border-box;
}

.news-slider .flickity-button {
    background: rgba(231, 76, 60, 0.8);
}

.news-slider .flickity-button:hover {
    background: #e74c3c;
}

.news-slider .flickity-button svg {
    fill: white;
}

.news-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.news-body {
    padding: 10px 0 0;
}

.news-body h3 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
}

.news-body h3 a {
    color: inherit;
    text-decoration: none;
}

.news-body h3 a:hover {
    color: #c41217;
}

.news-body p {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-image {
    display: block;
    aspect-ratio: 5 / 3;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .news-slide {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .news-slide {
        width: 100%;
    }
}
