/* KTM Details Card Styles */

.spec-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.spec-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.spec-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

/* Left side - Image */




.spec-card-image img:hover {
    transform: scale(1.05);
}


.spec-card-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FF6600;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

/* Right side - Specifications */
.spec-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spec-card-header {
    margin-bottom: 20px;
}

.spec-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.spec-card-location {
    color: #FF6600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-card-specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item i {
    color: #FF6600;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.spec-item-label {
    font-weight: 600;
    color: #333;
    min-width: 100px;
}

.spec-item-value {
    color: #666;
}

.spec-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.spec-card-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.spec-card-btn-primary {
    background-color: #FF6600;
    color: white;
}

.spec-card-btn-primary:hover {
    background-color: #0f0f0f;
    transform: translateY(-2px);
}

.spec-card-btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 2px solid #FF6600;
}

.spec-card-btn-secondary:hover {
    background-color: #FF6600;
    color: white;
    transform: translateY(-2px);
}

.spec-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-card-price {
    font-size: 22px;
    font-weight: bold;
    color: #FF6600;
}

 /* ── SECTION 1 : INFO CARDS ─────────────────────────────────────────── */

    .contact-info {
      padding: 80px 60px 60px;
      background: #FF6600;
      position: relative;
      overflow: hidden;
    }

    .contact-info::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, #10101033 0%, transparent 70%);
      pointer-events: none;
    }

    .section-label {
      font-family: 'Open Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 50px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .info-card {
      background: white;
      /* background: rgba(238, 236, 236, 0.05); */
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
      cursor: default;
     
    }

    .info-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .info-card:hover {
      transform: translateY(-6px);
      /* background: rgba(255,255,255,0.09); */
      border-color: rgba(200,96,42,0.4);
    }

    .info-card:hover::after { transform: scaleX(1); }

    .card-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }

    .card-icon svg {
      width: 24px; height: 24px;
      fill: none;
      stroke: #fff;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .card-type {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: black;
      margin-bottom: 8px;
    }

    .card-main {
       font-size: 1.2em;
      font-family: 'Open Sans', sans-serif;
      font-weight: 500;
      color: black;
      line-height: 1.5;
    }

    .card-sub {
      font-size: 0.82rem;
     color: black;
      margin-top: 4px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .spec-card-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

   

    .spec-card-content {
        padding: 20px;
    }

    .spec-card-title {
        font-size: 20px;
    }

    .spec-item {
        font-size: 13px;
        padding: 8px 0;
    }

    .spec-item-label {
        min-width: 80px;
    }

    .spec-card-actions {
        flex-direction: column;
    }

    .spec-card-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .spec-card {
        margin-bottom: 20px;
    }

    .spec-card-content {
        padding: 15px;
    }

    .spec-card-title {
        font-size: 18px;
    }

   

    .spec-item {
        font-size: 12px;
        padding: 6px 0;
    }

    .spec-card-status {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .spec-card-price {
        font-size: 18px;
    }
}
/*  Details Page Styles */

.spec-card-image {
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f5f5f5; */
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.spec-card-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* background-color: #f5f5f5; */
}

.spec-card-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .spec-card-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .spec-card-image {
        min-height: 200px;
    }
}


