/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #007bff;
}

.login-button {
    background-color: #007bff;
    color: white !important;
    border-radius: 5px;
    padding: 0.5rem 1.2rem !important;
    transition: background-color 0.3s ease;
    margin-left: 0.5rem;
}

.login-button:hover {
    background-color: #0056b3;
    color: white !important;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 0.8rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        font-size: 1rem;
    }

    .login-button {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.features h2 {
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.testimonials h2 {
    text-align: center;
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.testimonial-icon i {
    font-size: 1.8rem;
    color: white;
}

.testimonial-info h3 {
    color: #003366;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-icon {
        width: 50px;
        height: 50px;
    }

    .testimonial-icon i {
        font-size: 1.5rem;
    }

    .testimonial-info h3 {
        font-size: 1.1rem;
    }
}

/* Specifications Section */
.specifications {
    padding: 4rem 2rem;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.spec-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Brands Section */
.brands {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff;
}

.brands h2 {
    margin-bottom: 3rem;
    color: #2c3e50;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.brand-logo {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-logo {
        height: 80px;
    }
}

/* About Us Section */
.about {
    padding: 6rem 2rem;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    text-align: center;
    color: #0B3D91;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2c3e50;
    text-align: center;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #0B3D91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-box h3 {
    color: #0B3D91;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-intro {
        font-size: 1.2rem;
    }

    .about-text {
        padding: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Business Services Section */
.business-services {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-icon {
    flex: 0 0 100px;
    margin-right: 30px;
    width: 100px;
    height: 100px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.service-content p {
    color: #444;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

/* Update Capabilities Section */
.capabilities {
    padding: 80px 0;
    background-color: #fff;
}

.capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.capability-card {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.capability-icon {
    width: 120px;
    height: 120px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.capability-icon i {
    font-size: 3.5rem;
    color: white;
}

.capability-card h2 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.capability-card p {
    color: #444;
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .capabilities-container {
        flex-direction: column;
    }

    .capability-card {
        margin-bottom: 30px;
    }

    .service-row {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 0 20px 0;
    }

    .service-content h3 {
        font-size: 20px;
    }
}

/* Remove video section styles */
.video-section {
    display: none;
}

.video-container {
    display: none;
}

.video-container iframe {
    display: none;
}

/* Dealer Program Hero Section */
.dealer-hero {
    padding: 100px 40px 50px;
    text-align: left;
    background: linear-gradient(135deg, #eef7ff 0%, #ffffff 100%);
    margin-top: 0;
}

.dealer-hero::before {
    display: none;
}

.dealer-hero-content {
    position: static;
    transform: none;
    max-width: 800px;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    color: #333;
    text-align: left;
}

.dealer-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-shadow: none;
}

.dealer-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    text-shadow: none;
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    padding: 0;
    border-radius: 0;
}

.hero-benefits li i {
    color: #007bff;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .cta-button {
    font-size: 1.1rem;
    padding: 0.9rem 1.8rem;
    background-color: #007bff;
    border: none;
    text-transform: none;
    letter-spacing: 0;
}

.hero-cta .cta-button:hover {
    background-color: #0056b3;
    transform: none;
}

.qualification-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .dealer-hero {
        padding: 80px 20px 40px;
        text-align: center;
    }
    .dealer-hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .dealer-hero-content h1 {
        font-size: 2.2rem;
    }
    .dealer-hero-content p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-benefits {
        align-items: center;
        gap: 1rem;
    }
    .hero-benefits li {
        width: fit-content;
        font-size: 0.95rem;
    }
    .hero-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* AI Benefits Section */
.ai-benefits {
    padding: 80px 0;
    background-color: white;
}

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

.ai-benefits h2,
.success-stories h2,
.faq h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.benefit-card .subtitle {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1rem;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.benefit-card ul li i {
    color: #007bff;
    margin-right: 0.75rem;
    margin-top: 0.2em;
    font-size: 1rem;
}

/* Join CTA Section */
.join-cta {
    padding: 60px 0 40px;
    text-align: center;
    color: white;
    background: #2c3e50;
}

.join-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-cta p {
    font-size: 1.2rem;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.story-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.story-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.6;
}

.author {
    font-weight: bold;
    color: #003366;
    margin-bottom: 5px;
}

.position {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #003366;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #444;
    line-height: 1.6;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.subscribe-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .cta-buttons {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Site Preview Section */
.site-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.preview-container {
    margin-top: 50px;
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-text {
    flex: 1;
    padding: 30px;
}

.preview-text h3 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.preview-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.preview-features li i {
    color: #007bff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.preview-image {
    flex: 1.5;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.preview-image:hover {
    transform: translateY(-5px);
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-image:hover .preview-overlay {
    opacity: 1;
}

.zoom-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-icon i {
    color: #003366;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .preview-content {
        flex-direction: column;
        gap: 40px;
    }

    .preview-text {
        text-align: center;
    }

    .preview-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-preview {
        padding: 60px 0;
    }

    .preview-text h3 {
        font-size: 1.8rem;
    }

    .preview-features li {
        font-size: 1rem;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.products-container h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: #ffffff;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    padding: 20px;
    text-align: center;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.placeholder-image span {
    font-size: 0.9rem;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-details {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.view-details:hover {
    background: rgba(255, 255, 255, 0.3);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.5rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.product-specs span {
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.product-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features p {
    margin: 5px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: #007bff;
}

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

.sale-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.savings {
    color: #007bff;
    font-size: 0.9rem;
    font-weight: bold;
}

.product-button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #007bff;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0 0 10px 10px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.product-button:hover {
    background-color: #0056b3;
    color: white;
}

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

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
    
    .sale-price {
        font-size: 1.3rem;
    }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other fixed elements like the header */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.chat-widget i {
    color: white;
    font-size: 1.8rem;
}

.chat-widget:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* General Section Padding */
section {
    padding: 60px 0; /* Standard vertical padding */
}

/* Other sections that might need specific padding adjustments */
.site-preview {
    padding: 80px 0; /* Slightly more padding */
    background-color: #f8f9fa;
}

.ai-benefits {
    padding: 80px 0;
    background-color: white;
}

.join-cta {
    padding: 60px 0; /* Standard padding */
}

.success-stories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq {
    padding: 80px 0;
    background-color: white;
}

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

/* Headings and Subtitles */
.ai-benefits h2,
.success-stories h2,
.faq h2,
.site-preview h2 { /* Added site-preview h2 */
    text-align: center;
    color: #2c3e50; /* Consistent dark heading color */
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px; /* Consistent subtitle margin */
}

/* AI Benefits List Items */
.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    margin-bottom: 10px;
    display: flex; /* Use flex for alignment */
    align-items: flex-start; /* Align items top */
    line-height: 1.5; /* Improve line spacing */
}

/* Removed the ::before pseudo-element styles */

.benefit-card ul li i {
    color: #007bff; /* Blue icon color */
    margin-right: 0.75rem;
    margin-top: 0.2em; /* Adjust icon vertical alignment */
    font-size: 1rem;
}

/* Site Preview List Items */
.preview-features li i {
    color: #007bff; /* Blue icon color */
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Join CTA Buttons */
.join-cta .cta-button { /* Ensure primary button uses standard blue */
    background-color: #007bff;
    border: none;
}
.join-cta .cta-button:hover {
    background-color: #0056b3;
}
.secondary-button { /* Keep secondary as white outline */
    background-color: transparent;
    border: 2px solid white;
    color: white;
}
.secondary-button:hover {
    background-color: white;
    color: #003366;
}

/* Ensure footer sections have consistent spacing */
.footer-content {
    gap: 2.5rem; /* Slightly increase gap */
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    .dealer-hero {
        padding: 80px 20px 40px; /* Adjusted mobile hero padding */
        text-align: center;
    }
    .ai-benefits h2,
    .success-stories h2,
    .faq h2,
    .site-preview h2 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    /* ... other mobile styles ... */
} 