/* GIGA Page Specific Styles */

/* Hero Section */
.giga-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/isuzu-giga-ftr.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.giga-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

/* Lineup Overview Section */
.lineup-overview {
    padding: 70px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    color: #1a3668;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
}

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

.lineup-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lineup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lineup-icon {
    font-size: 2.5rem;
    color: #1a3668;
    margin-bottom: 20px;
}

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

.lineup-card p {
    color: #555;
    line-height: 1.5;
}

/* Key Features Section */
.key-features {
    padding: 70px 0;
    background-color: #f5f5f5;
}

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

.specs-nav {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.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;
    background-color: #e0e0e0;
    color: #333;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 5px 5px 0 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

.specs-content {
    background-color: #fff;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.spec-section.active {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .spec-section.active {
        flex-direction: row;
        gap: 30px;
    }
    
    .spec-image {
        flex: 1;
        max-width: 40%;
    }
    
    .spec-details {
        flex: 1.5;
    }
}

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

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

.spec-features h4 {
    color: #1a3668;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

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

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

.spec-features li strong {
    color: #1a3668;
}

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

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

.price-header {
    background-color: #1a3668;
    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: bold;
    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;
}

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

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

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

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

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

@media (min-width: 768px) {
    .contact-content {
        flex-direction: row;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-form {
        flex: 1;
    }
}

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

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

.contact-person h3 {
    font-size: 1.5rem;
    color: #1a3668;
    margin-bottom: 5px;
}

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

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

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

.contact-item i {
    color: #1a3668;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

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

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

.quick-contact-buttons {
    display: flex;
    gap: 10px;
}

.quick-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    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 {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .giga-hero {
        padding: 100px 0;
    }
    
    .giga-hero h1 {
        font-size: 2.5rem;
    }
    
    .giga-hero p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .swipe-hint {
        display: block;
    }
    
    .spec-section {
        padding: 20px;
    }
    
    .spec-details h3 {
        font-size: 1.5rem;
    }
}

/* 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 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20bd5a;
    transform: scale(1.1);
}
