/* --- THEME VARIABLES --- */
:root {
    --primary-color: #9EB71D;
    --secondary-color: #060402;
    --white-color: #ffffff;
}

/* --- PAGE HEADER (BREADCRUMB) STYLES --- */
.page-header {
    position: relative;
    /* Background Image */
    background: url('../all-images/images/carousel-img/breadcrumb-img-1.jpeg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Dark Overlay */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 4, 2, 0.781);
    z-index: 1;
}

/* Container Wrapper */
.page-header .container {
    z-index: 2;
}

/* --- WATERMARK TEXT (The Big Background Name) --- */
.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px !important;
    /* Very Big Text */
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.171);
    /* Outline Effect */
    white-space: nowrap;
    z-index: -1;
    /* Behind the main content */
    opacity: 0.6;
    pointer-events: none;
    /* User can't click/select */
    text-transform: uppercase;
    font-family: sans-serif;
    letter-spacing: 10px;
    animation: zoomWatermark 10s infinite alternate;
}

/* --- MAIN CONTENT STYLES --- */
.header-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

/* Breadcrumb Links */
.breadcrumb {
    margin-bottom: 10px;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: var(--white-color) !important;
    font-weight: 600;
    text-transform: uppercase;
}

/* Separator Color */
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-color) !important;
}

/* Main Title */
.page-title {
    color: var(--white-color);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

/* Green Divider Line */
/* .header-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 7px auto 0;
    border-radius: 2px;
} */

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomWatermark {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .page-header {
        height: 400px;
        top: -80px;
    }

    .watermark-text {
        font-size: 5rem;
    }

    /* Smaller watermark on mobile */
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .watermark-text {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* --- CONTACT PAGE DETAILS (CPD) STYLES --- */

/* Section Styling */
.cpd-section {
    background-color: var(--white-color);
    margin-top: 50px;
    /* padding-bottom: 50px; */
    /* Added padding bottom for spacing */
}

@media(max-width:991px) {
    .cpd-section {
        margin-top: -50px;
    }
}

/* --- INDIVIDUAL CARD STYLING --- */
.cpd-card {
    background-color: var(--secondary-color);
    /* Black BG */
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle Border */
    border-radius: 10px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

/* ICON CIRCLE */
.cpd-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
    transition: 0.3s;
}

/* CONTENT STYLING */
.cpd-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
    transition: 0.3s;
}

.cpd-card p {
    color: #b0b0b0;
    /* Light Gray */
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cpd-highlight {
    color: var(--white-color) !important;
    font-weight: 600;
    font-size: 1rem !important;
}

/* STATUS BADGE */
.cpd-badge {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

/* LINK STYLING */
.cpd-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 20px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* --- HOVER EFFECTS --- */
.cpd-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.cpd-card:hover .cpd-icon-box {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    /* Icon turns black on hover */
    transform: scale(1.1);
}

.cpd-card:hover h3 {
    color: var(--primary-color);
}

.cpd-card:hover .cpd-link {
    opacity: 1;
    transform: translateY(0);
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */

.contact-page-section {
    padding-bottom: 40px;
    background-color: var(--white-color);
}

/* Card Wrapper */
.contact-page-wrapper {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft Shadow */
    overflow: hidden;
    border: 1px solid #eee;
}

/* Image Side */
.contact-page-img {
    height: 100%;
    width: 100%;
    position: relative;
}

.contact-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Form Container */
.contact-page-form {
    padding: 50px 40px;
}

/* Title */
.contact-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Labels */
.contact-page-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.cp-required {
    color: red;
    margin-left: 3px;
}

/* Inputs */
.contact-page-input {
    background-color: var(--bg-gray);
    /* Ensure var is defined or use #f2f2f2 */
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Focus Effect: Green Border */
.contact-page-input:focus {
    background-color: var(--white-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(158, 183, 29, 0.2);
    outline: none;
}

/* Button Styles */
.contact-page-btn {
    background-color: var(--secondary-color);
    /* Black */
    color: var(--white-color);
    padding: 12px 25px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Button Hover */
.contact-page-btn:hover {
    background-color: var(--primary-color);
    /* Green */
    color: var(--secondary-color);
    /* Black Text */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .contact-page-form {
        padding: 30px 20px;
    }

    .contact-page-img {
        height: 100%;
        /* Force height for mobile image */
    }
}

/* --- MIDDLE DIVIDER STYLES --- */
.divider-section {
    background-color: var(--white-color);
    padding: 10px 0;
    /* Adjust spacing between sections */
}

.bike-divider-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

/* The Lines (Left & Right) */
.divider-line-dark {
    height: 3px;
    background-color: var(--primary-color);
    flex-grow: 1;
    border-radius: 2px;
}

/* The Center Icon Box */
.divider-icon-center {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    /* Green Border */
    color: var(--primary-color);
    /* Green Icon */
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 20px;
    /* Space between lines and icon */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

/* Hover Animation for the Icon */
.divider-icon-center:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(158, 183, 29, 0.4);
}