/**
 * Isuzu ELF Page Specific Styles
 */

/* Hero Section */
.elf-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/isuzu/ELF_NMR.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.elf-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.elf-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.elf-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Intro Section */
.intro {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a3c6e;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

/* Key Strengths Section */
.key-strengths {
    padding: 60px 0;
    background-color: #fff;
}

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

.strength-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.strength-icon {
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 15px;
}

.strength-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a3c6e;
}

.strength-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.strength-card li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Specs Overview Section */
.specs-overview {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.specs-nav-wrapper {
    margin-bottom: 30px;
    position: relative;
}

.specs-nav {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.specs-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.swipe-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.swipe-menu li {
    padding: 12px 25px;
    margin-right: 10px;
    background-color: #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.swipe-menu li:last-child {
    margin-right: 0;
}

.swipe-menu li.active {
    background-color: #1a3c6e;
    color: #fff;
}

.swipe-hint {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    display: none;
}

.spec-section {
    display: none;
    margin-top: 30px;
}

.spec-section.active {
    display: block;
}

.spec-image {
    margin-bottom: 30px;
}

.spec-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.spec-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a3c6e;
}

.spec-details p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.spec-table {
    margin-bottom: 30px;
}

.spec-table h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a3c6e;
}

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

.spec-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 30%;
    background-color: #f5f5f5;
}

.spec-features h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a3c6e;
}

.spec-features ul {
    padding-left: 20px;
}

.spec-features li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.spec-features ul ul {
    margin-top: 8px;
}

/* Price Section */
.price {
    padding: 60px 0;
    background-color: #fff;
}

.price-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-header {
    background-color: #1a3c6e;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-header p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-features {
    padding: 30px;
}

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

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-features li i {
    color: #1a3c6e;
    margin-right: 10px;
}

.price-cta {
    padding: 0 30px 30px;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-person {
    text-align: center;
    margin-bottom: 20px;
}

.contact-person h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.contact-person p {
    color: #666;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 20px;
}

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

.contact-item i {
    width: 30px;
    color: #1a3c6e;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1a3c6e;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.quick-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.call-btn {
    background-color: #f0f0f0;
    color: #333;
}

.call-btn:hover {
    background-color: #e0e0e0;
}

.wa-btn {
    background-color: #25D366;
    color: #fff;
}

.wa-btn:hover {
    background-color: #20bd5a;
}

.contact-form form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .elf-hero {
        height: 400px;
    }
    
    .elf-hero h1 {
        font-size: 2.5rem;
    }
    
    .elf-hero p {
        font-size: 1.2rem;
    }
    
    .swipe-hint {
        display: block;
    }
    
    .spec-image, .spec-details {
        width: 100%;
    }
    
    .spec-details h3 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .elf-hero {
        height: 350px;
    }
    
    .elf-hero h1 {
        font-size: 2rem;
    }
    
    .elf-hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .strength-card {
        padding: 20px;
    }
    
    .strength-card h3 {
        font-size: 1.2rem;
    }
    
    .spec-table td {
        padding: 8px 10px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}
