/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover, 
nav ul li a.active {
    color: #b8860b; /* Gold color for luxury feel */
}

.phone-btn {
    background-color: #b8860b;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.phone-btn:hover {
    background-color: #996c1d;
}

/* Hero Section */
.hero {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.hero-content {
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #b8860b;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #996c1d;
}

/* Page Banner */
.page-banner {
    background-color: #333;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-banner h2 {
    font-size: 1.5rem;
    color: #b8860b;
}

/* Section Styles */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

section h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #b8860b;
    border: 2px solid #b8860b;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #b8860b;
    color: white;
}

.btn-text {
    color: #b8860b;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #996c1d;
}

/* Grid Layouts */
.services-grid, 
.fleet-grid, 
.airports-grid, 
.testimonials-grid, 
.areas-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.fleet-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.airports-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.areas-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

/* Cards */
.service-card, 
.vehicle-card, 
.airport-card, 
.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, 
.vehicle-card:hover, 
.airport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img, 
.vehicle-card img, 
.airport-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h4, 
.vehicle-card h4, 
.airport-card h3, 
.testimonial-card h4 {
    padding: 15px 20px 0;
    font-size: 1.2rem;
}

.service-card p, 
.vehicle-card p, 
.airport-card p, 
.testimonial-card p {
    padding: 10px 20px 20px;
    color: #666;
}

.area-item {
    background-color: #f9f9f9;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
}

/* Overlays */
.overlay-text {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 40px;
    max-width: 800px;
    margin: -100px auto 0;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.full-width-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Testimonials */
.testimonial-card {
    padding: 30px;
    text-align: center;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-info-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item i {
    color: #b8860b;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: #666;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: #666;
    transition: color 0.3s ease;
}

.social-links a i {
    margin-right: 8px;
}

.social-links a:hover {
    color: #b8860b;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

/* Fleet Details */
.vehicle-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
}

.vehicle-detail-card img {
    height: 100%;
    object-fit: cover;
}

.vehicle-info {
    padding: 30px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0 30px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: #b8860b;
    margin-right: 10px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h2 {
    color: white;
}

.footer-cta h3 {
    color: #b8860b;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
}

.footer-nav nav ul {
    display: flex;
}

.footer-nav nav ul li {
    margin-right: 25px;
}

.footer-nav nav ul li a {
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav nav ul li a:hover {
    color: #b8860b;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #b8860b;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .vehicle-detail-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        margin-bottom: 15px;
    }
    
    .overlay-text {
        margin-top: 0;
        border-radius: 0;
    }
    
    .footer-nav {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-nav nav ul {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .footer-nav nav ul li {
        margin: 10px 0;
    }
    
    .social-icons a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
}
