/* services.css - Complete Stylesheet for Services Page */

/* Base Resets & Overrides */
body.services-page {
    display: block !important;
    overflow-x: hidden !important;
    position: relative !important;
    background-color: #f8f9fa !important;
}

body.services-page .section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0px 0;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.services-hero {
    min-height: 70vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 5;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}



/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    margin-bottom: 30px;
    border: none !important;
    overflow: hidden; 
    align-items: center;
    text-align: center;   
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
}

.service-card .btn-outline-primary {
    align-self: center !important;
    margin-left: auto;
    margin-right: auto;
    width: auto; /* Maintain natural button width */
    min-width: 180px; /* Give buttons consistent minimum width */
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #1A374D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper span {
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #1A374D;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;    
}

.vehicle-grid > a {
    grid-column: 1 / -1; /* Make button span all columns */
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.vehicle-type {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.vehicle-type .badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    margin-bottom: 8px;
    display: inline-block;
}

/* Hotel Tier List */
.hotel-tier-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    align-items: center;
}

.tier-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    justify-content: center;
}

.tier-item:hover {
    background: #e9ecef;
}

.tier-icon {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #ffc107;
    min-width: 70px;
}

.tier-item h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #343a40;
}

.tier-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #6c757d;
}

.tier-item div {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .service-card .btn-outline-primary {
        width: 100%;
    }
    
    .tier-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tier-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-card span {
    font-size: 2.5rem;
    color: #1A374D;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #343a40;
}

/* Buttons */
.btn-outline-primary {
    border: 2px solid #1A374D;
    color: #1A374D;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.btn-outline-primary:hover {
    background: #1A374D;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .service-card {
        margin-bottom: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .services-hero {
        min-height: 60vh;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
}

/* Animation Classes */
[data-aos] {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
}

[data-aos].aos-animate {
    transform: translateY(0);
    opacity: 1;
}