/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 10rem 0 5rem;
    color: var(--white);
    text-align: center;
}

.breadcrumb-nav {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb-nav a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.service-detail-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features i {
    color: var(--primary);
    font-size: 1.1rem;
}

.price-tag {
    display: inline-block;
    background: rgba(44, 95, 79, 0.1);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Destinations */
.destinations-section {
    background: var(--background);
}

.destination-card {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
}

.destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
}

.destination-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.destination-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Fleet Cards */
.fleet-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.fleet-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.fleet-content {
    padding: 1.8rem;
}

.fleet-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.fleet-content .vehicle-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.fleet-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.fleet-spec i {
    color: var(--primary);
}

.fleet-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.fleet-price small {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: 'Work Sans', sans-serif;
}

/* About Page */
.about-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.about-image-section {
    position: relative;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    max-width: 300px;
}

.about-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.milestone-section {
    background: var(--background);
}

.milestone-card {
    text-align: center;
    padding: 2rem;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.milestone-number {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.milestone-label {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Form */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 79, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

/* Map */
.map-container {
    border-radius: 4px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Booking Form */
.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Pricing Table */
.pricing-table {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.pricing-table table {
    width: 100%;
}

.pricing-table th {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 0 4rem;
    }
    
    .service-detail-card {
        margin-bottom: 2rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .contact-form-section,
    .booking-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
