/* Heli Taxi Luxury Styles */

/* Custom Quote Section */
.custom-quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.custom-quote-section .section-header h2 {
    color: #D4AF37;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.custom-quote-section .section-header p {
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 300;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.taxi-contact-form {
    color: #e0e0e0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group .required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/heli-taxi-bg.jpg') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: #fff;
}

.overview-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 300;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

/* Taxi Plans Section */
.taxi-plans {
    padding: 100px 0;
    background: #f8f8f8;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.plan-card.premium {
    border: 2px solid #D4AF37;
}

.plan-card.luxury {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #fff;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D4AF37;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-placeholder.taxi-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-placeholder.taxi-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.image-placeholder.taxi-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.plan-content {
    padding: 2.5rem;
}

.plan-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.luxury .plan-content h3 {
    color: #D4AF37;
}

.plan-duration {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.luxury .plan-duration {
    color: #ccc;
}

.plan-price {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-weight: 300;
}

.plan-price span {
    font-size: 1rem;
    color: #999;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.luxury .plan-features li {
    color: #e0e0e0;
    border-bottom-color: #444;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Popular Routes */
.popular-routes {
    padding: 80px 0;
    background: #fff;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.route-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.route-card:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
}

.route-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.route-time {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.route-price {
    font-size: 1.5rem;
    color: #D4AF37;
    font-weight: 600;
}

.routes-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Booking Process */
.booking-process {
    padding: 80px 0;
    background: #fff;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 0 0 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

.process-arrow {
    color: #D4AF37;
    font-size: 2rem;
    flex: 0 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #D4AF37;
    color: #fff;
}

.btn-primary:hover {
    background: #b8962f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
}