* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}
https://github.com/info-muemi/chief-safaris/edit/main/styles.css
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f0f4f8;
    color: #343a40;
}

.button {
    display: inline-block;
    background: #da9100; 
    color: #1e2a38; 
    padding: 15px 35px; 
    margin-top: 25px;
    text-decoration: none; 
    border-radius: 4px; 
    transition: all 0.3s ease; 
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(218, 145, 0, 0.4); 
    text-transform: uppercase;
}

.button:hover {
    background: #b87a00;
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(218, 145, 0, 0.5);
}

.button.secondary {
    background: #1e2a38; 
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.button.secondary:hover {
    background: #004c99;
}
header {
    background: #1e2a38; 
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
}
.logo {
    display: flex;
    align-items: center; 
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white; 
}

.header-logo {
    height: 50px; 
    width: auto;
    margin-right: 10px; 
    display: block; 

    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 15px rgba(218, 145, 0, 0.5)); 
}

.logo-text {
    font-size: 1.8em; 
    font-weight: 800; 
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7); 
}

nav ul {
    list-style: none;
    display: flex; 
}

nav ul li a {
    color: #f0f4f8; 
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

nav ul li a:hover {
    background: #004c99; 
    color: white;
}

.hero {
    background: linear-gradient(rgba(30, 42, 56, 0.7), rgba(30, 42, 56, 0.9)), url('images/safari_hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0; 
    margin-bottom: 0;
}

.hero h1 {
    font-size: 4.2em;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.6em;
    margin-bottom: 40px;
    font-weight: 300; 
}

section, main {
    padding: 0; 
    margin: 0;
    max-width: none;
}


main {
    margin: 0 auto; 
    max-width: 1200px; 
    background-color: #ffffff; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); 
    min-height: 80vh; 
}
.content-wrapper {
    max-width: 100%; 
    margin: 0 auto;
    padding: 40px 20px;
}

footer {
    background: #1e2a38;
    color: #b0c0d4;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
    font-size: 0.9em;
}

.vehicle-list-page {
    display: flex;
    flex-direction: column;
    gap: 25px; 
}

.vehicle-list-page h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #1e2a38;
}

.vehicle-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px; 
    align-items: flex-start; 
}

.vehicle-card img {
    width: 300px; 
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #ccc; 
}

.vehicle-details {
    flex-grow: 1; 
}

.vehicle-card h2 {
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.vehicle-card ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 20px 0;
}

.vehicle-card ul li {
    padding-left: 1.5em; 
    text-indent: -1.5em; 
}

.vehicle-card .button {
    background: #28a745; 
}

.vehicle-card .button:hover {
    background: #1e7e34;
}

@media (max-width: 768px) {
    .vehicle-card {
        flex-direction: column;
        align-items: center;
    }

    .vehicle-card img {
        width: 100%;
        max-width: 400px;
        margin-bottom: 15px;
    }
}
.what-we-offer {
    background-color: #1e2a38; 
    padding: 0; 
    margin: 40px 0; 
    color: white; 
}

.what-we-offer .content-wrapper {
    padding: 40px 20px; 
    text-align: center; 
}

.what-we-offer h2 {
    color: #da9100; 
}

.service-intro {
    color: #ced4da; 
}

.services-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; 
    margin-top: 40px;
}

.service-feature-block {
    background: transparent; 
    padding: 15px 10px; 
    border-radius: 0;
    box-shadow: none; 
    border: none;
    text-align: center; 
    transition: transform 0.3s ease;
}

.service-feature-block:hover {
    transform: translateY(-5px);
}

.service-feature-block h3 {
    color: white; 
    font-weight: 700;
}

.service-feature-block p {
    color: #ced4da; 
    font-size: 0.95em;
}

.feature-icon {
    font-size: 2.8em;
    color: #da9100; 
    margin-bottom: 10px;
}

.services-overview {
    background-color: #1e2a38; 
    padding: 0; 
    margin: 40px 0; 
    color: white; 
    text-align: center;
}

.services-overview h2 {
    color: #da9100; 
}

.service-cards-container { display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.service-card {
   flex: 1 1 300px;       
    max-width: 100%;      
    background: white;     
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-card .icon {
    font-size: 3.5em;
    color: #da9100; 
    margin-bottom: 15px;
}

.service-card h3 {
    color: #1e2a38; 
    font-weight: 700;
}

.service-card p {
    color: #555; 
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px; 
    border: 3px solid #ccc; 
    border-radius: 6px; 
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; 
    background-color: #a7a0a020; 
    margin-bottom: 10px; 
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #004c99; 
    box-shadow: 0 0 0 3px rgba(0, 76, 153, 0.15); 
    outline: none; 
}

.contact-form textarea {
    resize: vertical; 
}


.contact-form {
    background: #ffffff; 
    padding: 40px; 
    border-radius: 10px; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
    
  
    max-width: 700px;    
    margin: 40px auto;  
}


.form-actions {
    display: flex;
    gap: 15px; 
    margin-top: 20px;
    width: 100%;
}


.form-actions .button, 
.form-actions .call-now {
    flex: 1; 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 0; 
}


.call-now {
    background: #d58916; 
    color: white;
}

.call-now:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}


@media (max-width: 480px) {
    .form-actions {
        flex-direction: column;
    }
.service-cards-container {
    display: flex;
    justify-content: center; 
    gap: 20px;              
    flex-wrap: wrap;       
    padding: 20px 0;
}

.service-card {
    flex: 1 1 300px;       
    max-width: 350px;      
    box-sizing: border-box; 
}.whatsapp-button {
    background: rgba(37, 211, 102, 0.2); /* WhatsApp Green with Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-button:hover {
    background: rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}
}

.hero {
    background: linear-gradient(rgba(30, 42, 56, 0.5), rgba(30, 42, 56, 0.5)), 
                url('chief%20grid.png') no-repeat center center / cover !important;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}







