:root {
    --primary-color: #FFC107;
    --secondary-color: #25d366;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 60px;
}

/* Hero Carousel */
.hero-carousel {
    overflow: hidden;
    position: relative;
}

.machine-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.machine-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.machine-slide > .container-fluid {
    position: relative;
    z-index: 2;
}

.slide-content {
    animation: slideInLeft 0.8s ease-in-out;
}

.slide-image {
    animation: slideInRight 0.8s ease-in-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.machine-img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    max-width: 100%;
    height: auto;
}

.carousel-item:active .machine-img {
    transform: scale(1.05);
}

.carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.carousel-indicators [data-bs-slide-to] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    width: 12px;
    height: 12px;
    border-color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 193, 7, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
    z-index: 5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0);
}

/* Button Styles */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 1rem;
}

.btn-warning:hover {
    background-color: #ffb300;
    border-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    color: #000;
}

.btn-outline-light {
    color: white;
    border-color: white;
    border-width: 2px;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--text-dark) !important;
}

.navbar-brand i {
    color: var(--primary-color);
    margin-right: 8px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-custom {
    background: #071226;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: rgba(255,255,255,0.92);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #ffc107;
}
.navbar-custom .btn-warning {
    background: #ffb300;
    border-color: #ffb300;
    color: #071226;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

section p.lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Features Section */
#features {
    background: #fff;
}

.feature-item h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Equipment Section */
#machines {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.equipment-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.equipment-card .bg-warning {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb300 100%);
}

/* How It Works */
#how-it-works {
    background: white;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb300 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.step-box h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.step-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #3a3a3a 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* WhatsApp Banner */
.whatsapp-banner {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin: 40px 0;
    border-radius: 12px;
}

.whatsapp-banner h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.whatsapp-banner p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-box {
    height: 100%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
    justify-content: center;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-box h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.contact-box p {
    color: var(--text-light);
}

.contact-box a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #ffb300;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid var(--primary-color);
    padding: 60px 0 20px;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

footer p, footer a {
    font-size: 0.9rem;
    line-height: 1.8;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section p {
    color: #aaa;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.social-links a.whatsapp:hover {
    background-color: var(--secondary-color);
    color: white;
}

.social-links a i {
    line-height: 1;
}

/* Badge Styling */
.badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    border-radius: 50px;
}

/* Legal Pages */
.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* FAQ Styles */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color) !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-item .accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 700;
    padding: 1.5rem;
    border: none;
    box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
    background: white;
    color: var(--text-dark);
}

.faq-item .accordion-body {
    color: var(--text-light);
    line-height: 1.8;
    padding: 0 1.5rem 1.5rem;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
}

.faq-item .accordion-button::after {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .machine-slide {
        min-height: auto;
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 24px;
        height: 24px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .contact-box {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.5rem;
    }

    .display-6 {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 0.95rem;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .navbar-expand-lg .navbar-collapse {
        padding-top: 1rem;
    }

    .specs,
    .pricing-section {
        padding: 1rem;
    }

    section {
        padding: 30px 0;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-in-out;
}

/* Utility Classes */
.text-warning {
    color: var(--primary-color) !important;
}

.bg-light-custom {
    background: var(--light-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    margin-top: 60px;
}

.equipment-grid-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.equipment-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.equipment-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.equipment-item:hover .equipment-image-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-image {
    transform: scale(1.05);
}

.equipment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    padding: 15px;
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-overlay {
    transform: translateY(0);
}

.equipment-overlay h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.equipment-overlay p {
    font-size: 0.8rem;
}

.cta-content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.cta-content {
    max-width: 500px;
}

.cta-content h1 {
    color: var(--text-dark);
    line-height: 1.2;
}

.cta-content .lead {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.feature-item i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.pricing-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.price-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb300 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.price-text {
    font-size: 0.85rem;
}

.price-text p {
    color: var(--text-light);
    margin-bottom: 2px;
}

.price-text strong {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-outline-dark {
    border-width: 2px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .equipment-grid {
        gap: 15px;
    }

    .cta-content {
        margin-top: 40px;
    }

    .cta-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 100px 0 30px;
    }

    .equipment-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cta-content {
        padding-left: 0 !important;
    }

    .cta-content h1 {
        font-size: 1.8rem;
    }

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

    .btn-lg {
        width: 100%;
    }

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

@media (max-width: 576px) {
    .hero-banner {
        margin-top: 60px;
        padding: 80px 0 20px;
    }

    .equipment-grid-section,
    .cta-content-section {
        padding: 20px;
    }

    .equipment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cta-content h1 {
        font-size: 1.5rem;
    }

    .cta-content .lead {
        font-size: 0.95rem;
    }

    .features-list {
        gap: 10px;
    }

    .feature-item span {
        font-size: 0.85rem;
    }

    .pricing-quick {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .price-item {
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-in-out;
}

/* Utility Classes */
.text-warning {
    color: var(--primary-color) !important;
}

.bg-light-custom {
    background: var(--light-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    margin-top: 60px;
}

.equipment-grid-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.equipment-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.equipment-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.equipment-item:hover .equipment-image-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-image {
    transform: scale(1.05);
}

.equipment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    padding: 15px;
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-overlay {
    transform: translateY(0);
}

.equipment-overlay h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.equipment-overlay p {
    font-size: 0.8rem;
}

.cta-content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.cta-content {
    max-width: 500px;
}

.cta-content h1 {
    color: var(--text-dark);
    line-height: 1.2;
}

.cta-content .lead {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.feature-item i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.pricing-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.price-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb300 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.price-text {
    font-size: 0.85rem;
}

.price-text p {
    color: var(--text-light);
    margin-bottom: 2px;
}

.price-text strong {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-outline-dark {
    border-width: 2px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .equipment-grid {
        gap: 15px;
    }

    .cta-content {
        margin-top: 40px;
    }

    .cta-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 100px 0 30px;
    }

    .equipment-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cta-content {
        padding-left: 0 !important;
    }

    .cta-content h1 {
        font-size: 1.8rem;
    }

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

    .btn-lg {
        width: 100%;
    }

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

@media (max-width: 576px) {
    .hero-banner {
        margin-top: 60px;
        padding: 80px 0 20px;
    }

    .equipment-grid-section,
    .cta-content-section {
        padding: 20px;
    }

    .equipment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cta-content h1 {
        font-size: 1.5rem;
    }

    .cta-content .lead {
        font-size: 0.95rem;
    }

    .features-list {
        gap: 10px;
    }

    .feature-item span {
        font-size: 0.85rem;
    }

    .pricing-quick {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .price-item {
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-in-out;
}

/* Utility Classes */
.text-warning {
    color: var(--primary-color) !important;
}

.bg-light-custom {
    background: var(--light-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Dark hero inspired by Offleet */
.hero-banner.hero-dark {
    background: linear-gradient(180deg,#071226 0%, #0b1a2b 60%);
    color: #fff;
    padding: 120px 0 80px;
    margin-top: 0;
    min-height: 70vh;
    background-image: url('../images/banner.jpg');
    background-size: cover; /* Ensures the image fills the area */
    background-position: center; /* Centers the backdrop */
    background-repeat: no-repeat;
}

.hero-banner.hero-dark .lead {
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    max-width: 520px;
}

.hero-image-wrapper {
    display: inline-block;
    max-width: 100%;
}

.hero-main-img {
    width: 100%;
    max-width: 820px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(2,6,23,0.7), 0 8px 30px rgba(0,0,0,0.45);
    transform: translateY(0);
}

/* small thumbs under CTA */
.small-thumbs .thumb img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 20px rgba(2,6,23,0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-logo {
    filter: invert(1) hue-rotate(180deg);
    width: 140px;
    height: auto;
}

.small-thumbs .thumb img:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 40px rgba(2,6,23,0.7);
}

/* tweak WhatsApp button contrast on dark hero */
.hero-banner.hero-dark .btn-whatsapp {
    box-shadow: 0 12px 30px rgba(37,211,102,0.15);
}

.hero-banner.hero-dark .btn-outline-light {
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

/* responsive */
@media (max-width: 992px) {
    .hero-banner.hero-dark {
        padding: 80px 0 40px;
    }

    .hero-main-img {
        max-width: 520px;
    }
}

@media (max-width: 576px) {
    .hero-banner.hero-dark {
        padding-top: 6rem !important;
        text-align: center;
    }

    .hero-banner.hero-dark .col-lg-6 {
        text-align: center;
    }

    .hero-main-img {
        max-width: 340px;
        margin: 20px auto 0;
    }

    .small-thumbs {
        justify-content: center;
    }

    .small-thumbs .thumb img {
        width: 90px;
        height: 90px;
    }
}

@media (min-width: 1200px) {
    .display-2 {
        font-size: 3.5rem;
    }
}

@media(min-width:1200px) {
    .navbar-logo {
        height: 36px;
        width: auto;
        object-fit: contain;
        padding-left: 150px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 30px;
    }
}

@media (max-width: 1024px) {
    .navbar-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 42px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 36px;
    }
}

.card-img-top-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-equipment-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.navbar-toggler-icon {
    filter: invert(1) brightness(0) !important;
}
