﻿/* ===============================
   Services Overview Section
   =============================== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Section Styling */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

/* Title and Subtitle Styling */
.services-eyebrow {
    font-size: 0.9rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #f1c40f; /* Yellow for title */
}

/* Service Card Styling */
.service-card {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    text-align: center;
    transition: transform 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px); /* Elevates card on hover */
    }

/* Icon Styling */
.service-icon {
    font-size: 3rem;
    color: #f1c40f;
    margin-bottom: 20px;
}

/* Text Styling */
h6 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1c40f; /* Yellow for headings */
    margin-bottom: 10px;
}

.text-soft {
    color: #ccc; /* Light gray for text */
}

small {
    font-size: 0.875rem;
    color: #bbb; /* Muted text for conditions */
}

/* Responsive Design */
@media (max-width: 992px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .service-card {
        padding: 25px;
    }

    h3 {
        font-size: 1.8rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        margin-bottom: 20px;
    }

    h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}





/* ===============================
   PILARS SECTION
   =============================== */

/* Section Styling */
.pillars-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1c1c1c;
    color: white;
    position: relative;
}

/* Title Styling */
.pillars-eyebrow {
    font-size: 1rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pillars-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1c40f; /* Yellow for title */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

/* Card Styling */
.pillar-card {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .pillar-card:hover {
        transform: translateY(-10px); /* Elevates card on hover */
        box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
    }

/* Pillar Icon Styling */
.pillar-icon {
    background-color: #f1c40f;
    color: #121212;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: rotate(15deg); /* Rotate icon on hover */
}

/* Text Styling */
.text-soft {
    color: #ccc; /* Light gray for text */
}

small {
    font-size: 0.875rem; /* Slightly smaller text */
}

/* Responsive Design */
@media (max-width: 992px) {
    .pillars-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .pillar-card {
        padding: 25px;
    }

    .pillars-section h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .pillar-card {
        margin-bottom: 30px;
    }

    .pillar-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .pillars-section h3 {
        font-size: 1.6rem;
    }
}




/* How It Works Section */
.cta-section {
    background-color: #1c1c1c;
    padding: 80px 0;
    color: #fff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
}

.how-it-works-card {
    background-color: #333;
    color: #fff;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

    .how-it-works-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.step-icon {
    font-size: 40px;
    color: #fe6e9a;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.how-it-works-card:hover .step-icon {
    transform: rotate(15deg);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fe6e9a;
    margin-bottom: 15px;
}

.card-body p {
    font-size: 1rem;
    color: #bbb;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .how-it-works-card {
        margin-bottom: 20px;
    }
}


/* CTA Section */
.cta-section {
    background-color: #1c1c1c; /* Dark background */
    padding: 80px 0;
    color: #fff;
    position: relative;
    text-align: center;
}

    .cta-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(50, 77, 215, 0.1), rgba(255, 106, 143, 0.1));
        z-index: -1;
    }

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fe7a7b; /* Light pink for the title */
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 30px;
}

.btn-warning {
    background: linear-gradient(135deg, #ffb200, #ff8f00);
    border: none;
    color: white;
    background-size: 200%;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 35px;
    border-radius: 30px;
    transition: background-position 0.4s ease, transform 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

    .btn-warning:hover {
        background-position: right center;
        transform: scale(1.05);
    }

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .btn-warning {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* ==============================
   MotorTrader - Launch Offers
   Prefix: mt-offers
   ============================== */

.mt-offers {
    position: relative;
    background: radial-gradient(1200px 600px at 20% 10%, rgba(243, 156, 18, 0.12), transparent 60%), radial-gradient(900px 500px at 90% 30%, rgba(241, 196, 15, 0.10), transparent 55%), linear-gradient(180deg, #0f0f0f 0%, #121212 60%, #0f0f0f 100%);
    color: #fff;
    overflow: hidden;
}

.mt-offers--pad {
    padding: 90px 0;
}

.mt-offers__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #f39c12;
    background: rgba(243, 156, 18, 0.12);
    border: 1px solid rgba(243, 156, 18, 0.25);
    padding: 8px 14px;
    border-radius: 999px;
}

.mt-offers__title {
    margin-top: 14px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #f1c40f;
    text-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.mt-offers__subtitle {
    margin: 12px auto 0;
    max-width: 820px;
    color: #cfcfcf;
    font-size: 1.05rem;
}

/* Card */
.mt-offers__card {
    position: relative;
    height: 100%;
    border-radius: 18px;
    padding: 28px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: fadeInUp 1.5s ease-out;
}

    .mt-offers__card:hover {
        transform: translateY(-10px);
        border-color: rgba(243,156,18,0.35);
        box-shadow: 0 24px 70px rgba(0,0,0,0.55);
    }

.mt-offers__cardTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.mt-offers__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.6rem;
    background: rgba(243, 156, 18, 0.12);
    border: 1px solid rgba(243, 156, 18, 0.25);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}

.mt-offers__badge {
    font-size: 0.85rem;
    font-weight: 800;
    color: #121212;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(243,156,18,0.25);
}

.mt-offers__cardTitle {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
}

.mt-offers__cardText {
    color: #d8d8d8;
    margin: 0 0 14px;
    line-height: 1.7;
}

    .mt-offers__cardText strong {
        color: #f1c40f;
        font-weight: 800;
    }

.mt-offers__fine {
    color: #a9a9a9;
    font-size: 0.9rem;
    margin: 0 0 18px;
}

/* Buttons */
.mt-offers__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 16px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mt-offers__btn--primary {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #121212;
    box-shadow: 0 14px 30px rgba(243,156,18,0.25);
    border: 1px solid rgba(243,156,18,0.35);
}

    .mt-offers__btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(243,156,18,0.35);
    }

.mt-offers__btn--ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
}

    .mt-offers__btn--ghost:hover {
        transform: translateY(-2px);
        border-color: rgba(243,156,18,0.35);
        box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    }

/* Strip */
.mt-offers__strip {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
}

.mt-offers__stripText {
    color: #d7d7d7;
}

    .mt-offers__stripText strong {
        color: #f1c40f;
    }

.mt-offers__stripBtn {
    white-space: nowrap;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 16px;
    border-radius: 999px;
    color: #121212;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border: 1px solid rgba(243,156,18,0.35);
    box-shadow: 0 14px 30px rgba(243,156,18,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .mt-offers__stripBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(243,156,18,0.33);
    }

/* Responsive */
@media (max-width: 768px) {
    .mt-offers--pad {
        padding: 70px 0;
    }

    .mt-offers__strip {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .mt-offers__stripBtn {
        width: 100%;
    }
}
