body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
}

.hero-container {
    position: relative;
    height: 100vh;
    background: url('assets/images/rodamas-motor.webp') center center/cover no-repeat;
    display: flex;
    align-items: flex-end; /* Changed from center to flex-end */
    justify-content: center;
    padding-bottom: 10vh; /* Add padding to position it at 2/3 height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 0, 0, 0.4); /* Honda red accent */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 3rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 1);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: -1rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 0.95;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 0.95;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.info-section {
    background: #fff;
    width: 100%;
    padding: 0 0 3rem 0;
    display: flex;
    justify-content: center;
}

.info-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    padding: 2rem 2rem 2.5rem 2rem;
}

.info-content h2.tagline {
    color: #c80000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.sales-service h3,
.cta-section h3 {
    color: #c80000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sales-service ul,
.sales-service p {
    margin-bottom: 1.2rem;
}

.sales-service ul {
    padding-left: 1.2rem;
}

.cta-section {
    text-align: center;
    margin-top: 2.5rem;
}

.cta-btn {
    display: inline-block;
    background: #c80000;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(200, 0, 0, 0.12);
    transition: background 0.2s;
    margin-top: 1rem;
}

.cta-btn:hover {
    background: #a00000;
}

/* Ensure Bootstrap container, row, and col are not overridden */
.container, .row, [class^="col-"] {
    padding: initial;
    margin: initial;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .info-content {
        padding: 1rem 0.5rem 1.5rem 0.5rem;
    }

    .info-content h2.tagline {
        font-size: 1.1rem;
    }

    .sales-service h3,
    .cta-section h3 {
        font-size: 1rem;
    }
}

/* Contact Section Styles */
.contact-section {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    background: #c80000;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: #c80000;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: #a00000;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 12px;
}

@media (max-width: 992px) {
    .contact-info {
        margin-bottom: 2rem;
    }

    .contact-item {
        margin-bottom: 1.5rem !important;
    }
}
