/* ==========================================================================
   Bike Details Section - Professional Styling
   ========================================================================== */

.bikedetails {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Bike Details Card */
.bikeDetailsCard {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(8, 250, 194, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bikeDetailsCard:hover {
    box-shadow: 0 12px 48px rgba(8, 250, 194, 0.15);
    transform: translateY(-2px);
}

.bikeDetailsInner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

/* Left Side - Image Section */
.bikeDetailsImage {
    padding: 40px;
    background: linear-gradient(135deg, rgba(8, 250, 194, 0.05) 0%, rgba(8, 250, 194, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.bikeDetailsImage img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

.bikeDetailsCard:hover .bikeDetailsImage img {
    transform: scale(1.05);
}

/* Right Side - Details Section */
.bikeDetailsInfo {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

/* Title Section */
.bikeDetailsTitle {
    margin-bottom: 30px;
}

.bikeDetailsTitle h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: "Lexend Tera", sans-serif;
    line-height: 1.2;
}

.bikeVariant {
    font-size: 16px;
    color: #47bcc8;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Price Tag */
.bikePriceTag {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(8, 250, 194, 0.1) 0%, rgba(8, 250, 194, 0.05) 100%);
    border-left: 4px solid #47bcc8;
    border-radius: 8px;
}

.priceLabel {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 32px;
    color: #47bcc8;
    font-weight: 700;
    font-family: "Lexend Tera", sans-serif;
}

/* Specifications Section */
.bikeSpecifications {
    margin-bottom: 30px;
}

.bikeSpecifications h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: "Lexend Tera", sans-serif;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

/* Specifications Grid */
.specGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.specItem {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.specLabel {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specValue {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.specValue::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #47bcc8;
    border-radius: 50%;
    margin-right: 10px;
}

/* Action Buttons */
.bikeDetailsActions {
    display: flex;
    gap: 12px;
    padding-top: 20px;
}

.bikeDetailsActions .btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.bikeDetailsActions .btn1 {
    background-color: #102C35;
    color: #47bcc8;

    /* background-color: #47bcc8; */
    /* color: #000; */
    /* border: 2px solid #47bcc8; */
}

.bikeDetailsActions .btn1:hover {
    background-color: #fbfdfd;
    color: #1a1a1a;
    border-color: #050505;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(8, 250, 194, 0.3);
}

.bikeDetailsActions .btn-secondary {
    background-color: transparent;
    color: #070707;
    border: 2px solid #090909;
}

.bikeDetailsActions .btn-secondary:hover {
    background-color: #102C35;
    color: #47bcc8;
    transform: translateY(-2px);
}

/* No Details Found */
.noDetailsFound {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 12px;
}

.noDetailsFound p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.noDetailsFound .btn {
    display: inline-block;
    padding: 12px 30px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 991px) {
    .bikeDetailsInner {
        grid-template-columns: 1fr;
    }

    .bikeDetailsImage {
        min-height: 350px;
        padding: 30px;
        order: 2;
    }

    .bikeDetailsInfo {
        min-height: auto;
        padding: 40px 30px;
        order: 1;
    }

    .bikeDetailsTitle h1 {
        font-size: 32px;
    }

    .price {
        font-size: 28px;
    }

    .specGrid {
        grid-template-columns: 1fr 1fr;
    }

    .bikeDetailsActions {
        flex-wrap: wrap;
    }

    .bikeDetailsActions .btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .bikedetails {
        padding: 40px 0;
    }

    .bikeDetailsInner {
        grid-template-columns: 1fr;
    }

    .bikeDetailsImage {
        min-height: 300px;
        padding: 20px;
    }

    .bikeDetailsInfo {
        padding: 30px 20px;
    }

    .bikeDetailsTitle h1 {
        font-size: 28px;
    }

    .bikeVariant {
        font-size: 14px;
    }

    .price {
        font-size: 24px;
    }

    .bikeSpecifications h3 {
        font-size: 18px;
    }

    .specGrid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .specItem {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .bikeDetailsActions {
        gap: 10px;
    }

    .bikeDetailsActions .btn {
        flex: 1 1 100%;
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .bikedetails {
        padding: 20px 0;
    }

    .bikeDetailsCard {
        border-radius: 8px;
    }

    .bikeDetailsImage {
        min-height: 250px;
        padding: 15px;
    }

    .bikeDetailsInfo {
        padding: 20px 15px;
    }

    .bikeDetailsTitle h1 {
        font-size: 24px;
    }

    .bikePriceTag {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
    }

    .price {
        font-size: 20px;
    }

    .bikeSpecifications h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .specGrid {
        gap: 8px;
    }

    .specItem {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    .specLabel {
        font-size: 11px;
    }

    .specValue {
        font-size: 14px;
    }

    .bikeDetailsActions {
        flex-direction: column;
        gap: 8px;
    }

    .bikeDetailsActions .btn {
        width: 100%;
        padding: 12px 15px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Animation & Effects
   ========================================================================== */

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bikeDetailsImage {
    animation: slideInFromLeft 0.6s ease-out;
}

.bikeDetailsInfo {
    animation: slideInFromRight 0.6s ease-out;
}

/* Smooth transitions for interactive elements */
.specItem {
    transition: all 0.2s ease;
}

.specItem:hover {
    padding-left: 10px;
    color: #47bcc8;
}

.specItem:hover .specValue {
    color: #47bcc8;
}

/* contact info */

/* ==========================================================================
   Branches / Contact Cards Section
   ========================================================================== */

.branches {
    padding: 80px 0;
    background: linear-gradient(160deg, #f4fbfb 0%, #eaf7f7 50%, #f4fbfb 100%);
    position: relative;
    overflow: hidden;
    font-family: calibri;
}

.branches::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(71, 188, 200, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.branches::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16, 44, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.branches .evCommonInnerPageHeading h2 {
    color: #102C35;
}

.branches .evCommonInnerPageHeading p {
    color: #5a7a82;
    font-size: 16px;
    margin-top: 8px;
}

/* Grid layout – 4 cards in one row on desktop */
.branchesGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

/* ── Individual Card ── */
.branchContactCard {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(16, 44, 53, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.branchContactCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 48px rgba(71, 188, 200, 0.22);
}

/* ── Bottom accent bar ── */
.branchCardAccent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #102C35 0%, #47bcc8 100%);
    border-radius: 0 0 16px 16px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.branchContactCard:hover .branchCardAccent {
    transform: scaleX(1);
}

/* ── Icon Circle ── */
.branchCardIcon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #102C35 0%, #1e4a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #47bcc8;
    margin-bottom: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(16, 44, 53, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branchContactCard:hover .branchCardIcon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 28px rgba(71, 188, 200, 0.35);
}

/* ── Card Body ── */
.branchCardBody {
    flex: 1;
}

.branchCardTitle {
    font-size: 18px;
    font-weight: 700;
    color: #102C35;
    margin-bottom: 12px;
    font-family: "Lexend Tera", sans-serif;
    letter-spacing: 0.3px;
}

.branchCardText {
    font-size: 14px;
    color: #5a7a82;
    line-height: 1.8;
    margin: 0;
}

.branchCardText a {
    color: #47bcc8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.branchCardText a:hover {
    color: #102C35;
    text-decoration: underline;
}

/* ==========================================================================
   Branches Cards – Responsive
   ========================================================================== */

@media (max-width: 1199px) {
    .branchesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .branches {
        padding: 60px 0;
    }

    .branchesGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 36px;
    }

    .branchContactCard {
        padding: 28px 20px 26px;
    }

    .branchCardIcon {
        width: 60px;
        height: 60px;
    }

    .branchCardTitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .branchesGrid {
        grid-template-columns: 1fr;
    }

    .branchContactCard {
        padding: 24px 18px 22px;
    }
}
