/* --- Basic Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

section {
    padding: 60px 0;
}

/* --- Header & Navigation --- */
header {
    background-color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #FFC107;
}

.cta-button {
    background-color: #FFC107;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0a800;
}

/* --- Hero Section --- */



.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/nz_bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px; /* Offset for fixed header */
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Booking Form */
.booking-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: 0 auto;
}

.booking-form h3 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}
.form-row .form-group {
    flex: 1;
}

.booking-form input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #218838;
}

.submit-button-small {
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button-small:hover {
    background-color: #218838;
}

/* --- Features Section --- */
.features {
    background-color: #f9f9f9;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.feature-item img {
    margin-bottom: 15px;
    border-radius: 50%;
}

/* --- Services Section --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}
.service-card img {
    width: 100%;
    display: block;
}
.service-card h3, .service-card p {
    padding: 0 20px;
}
.service-card h3 {
    margin-top: 15px;
}
.service-card p {
    padding-bottom: 20px;
    color: #666;
}

/* --- Fleet Section --- */
.fleet {
    background-color: #f9f9f9;
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}
.fleet-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.fleet-item img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: #fff;
}
.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 5px solid #FFC107;
    border-radius: 5px;
    max-width: 700px;
    margin: 20px auto;
    font-style: italic;
}
.testimonial-card h4 {
    text-align: right;
    font-style: normal;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

/* --- App Download CTA --- */
.app-download {
    background-color: #333;
    color: #fff;
    text-align: center;
}
.app-download h2 {
    font-size: 2.2rem;
}
.app-buttons {
    margin-top: 20px;
}
.app-buttons a {
    margin: 0 10px;
    display: inline-block;
}
.app-buttons img {
    height: 50px;
    transition: transform 0.3s ease;
}
.app-buttons img:hover {
    transform: scale(1.05);
}

/* --- Footer --- */
footer {
    background-color: #222;
    color: #ccc;
    padding-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}
.footer-col ul li a:hover {
    color: #FFC107;
}
.footer-col a {
    color: #ccc;
}
.footer-col a:hover {
    color: #FFC107;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    header .container {
        flex-direction: column;
    }
    header nav {
        margin-top: 15px;
    }
    header nav ul li {
        margin: 0 10px;
    }

    .hero {
        height: auto;
        padding: 150px 0 80px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-grid .footer-col ul {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .cta-button {
        display: none; /* Hide button on very small screens, booking form is prominent */
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .booking-form-container {
        padding: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}