/* Custom CTA styles for Oiko Motors */
.oiko-cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.oiko-cta-card {
    background: #f8fafd;
    border-radius: 40px;
    padding: 70px 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oiko-cta-card.dark {
    background: linear-gradient(135deg, #c49c57, #21304b);
    color: #fff;
}

/* UNIVERSAL BUTTON CLASS - Standardizing all buttons */
.oiko-btn, 
.pbmit-btn, 
.ecoX-btn {
    display: inline-block !important;
    padding: 18px 45px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    font-size: 14px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    min-width: 200px !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

/* EXCEPTION: Reset for Menu/Header buttons to keep them compact */
.header-button-area .pbmit-btn,
.navbar .pbmit-btn,
header .pbmit-btn {
    padding: 10px 25px !important;
    min-width: auto !important;
    font-size: 13px !important;
}

/* GOLD BUTTON VARIANT */
.oiko-btn-gold, 
.pbmit-btn-global, 
.pbmit-btn-secondary {
    background: #c49c55 !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(196, 156, 85, 0.3) !important;
}

.oiko-btn-gold:hover, 
.pbmit-btn-global:hover, 
.pbmit-btn-secondary:hover {
    background: #111 !important;
    color: #fff !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* BLACK BUTTON VARIANT */
.oiko-btn-black, 
.ecoX-btn {
    background: #111 !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.oiko-btn-black:hover, 
.ecoX-btn:hover {
    background: #c49c55 !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(196, 156, 85, 0.4) !important;
}

/* WHITE BUTTON VARIANT */
.oiko-btn-white {
    background: #fff !important;
    color: #1a2332 !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2) !important;
}

.oiko-btn-white:hover {
    background: #c49c55 !important;
    color: #fff !important;
    transform: translateY(-8px) !important;
}

/* OUTLINE WHITE VARIANT */
.oiko-btn-outline-white, 
.pbmit-btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.oiko-btn-outline-white:hover, 
.pbmit-btn-outline:hover {
    background: #fff !important;
    color: #111 !important;
    border-color: #fff !important;
    transform: translateY(-8px) !important;
}

/* Arrow cleanup for ecoX buttons */
.ecoX-btn .btn-arrow { display: none !important; }

@media (max-width: 768px) {
    .oiko-cta-section { padding: 60px 0; }
    .oiko-cta-card { padding: 40px 20px; border-radius: 25px; }
    .oiko-btn, .pbmit-btn, .ecoX-btn { 
        width: 100% !important; 
        min-width: auto !important;
        margin-bottom: 10px !important; 
    }
}