/* =========================
   ABOUT SECTION
========================= */

.lux-divider {
    width: 60px;
    height: 2px;
    background-color: #C9A24D;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-image {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

/* =========================
   SERVICES ENHANCEMENT
========================= */

.service-icon i {
    font-size: 36px;
    color: #C9A24D;
    transition: all 0.3s ease;
}

.service-card {
    background: #1F2937;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #C9A24D;
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-price {
    margin-top: 20px;
    font-weight: 600;
    color: #C9A24D;
    letter-spacing: 1px;
}

/* =========================
   FLEET SECTION
========================= */

.fleet-card {
    background: #1F2937;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.fleet-card::before {
    content: "";
    height: 3px;
    width: 100%;
    background: #C9A24D;
    position: absolute;
    top: 0;
    left: 0;
}

.fleet-image {
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.fleet-card:hover img {
    transform: scale(1.08);
}

.fleet-body {
    padding: 25px;
}

.fleet-body h5 {
    color: #E5E7EB;
    font-weight: 600;
    margin-bottom: 10px;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
/* =========================
   WHY US SECTION
========================= */

.whyus-section {
    background-color: #1F2937;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    color: #9CA3AF;
    margin-top: 15px;
}

.whyus-card {
    background: #111827;
    padding: 40px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.whyus-card:hover {
    transform: translateY(-6px);
    border: 1px solid #C9A24D;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.whyus-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 1px solid rgba(201,162,77,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A24D;
    font-size: 24px;
    transition: all 0.3s ease;
}

.whyus-card:hover .whyus-icon {
    background-color: #C9A24D;
    color: #0B0F19;
    transform: scale(1.05);
}

.whyus-card h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.whyus-card p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.7;
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    background-color: #0B0F19;
}

.contact-info-card {
    background: #1F2937;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
    color: #E5E7EB;
}

.contact-divider {
    border-color: rgba(201,162,77,0.2);
}

.contact-form-card {
    background: #1F2937;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.contact-form-card label {
    font-size: 13px;
    color: #9CA3AF;
}
