/*
Theme Name: RescuePlus254
Theme URI: https://rescueplus.co.ke
Author: RescuePlus254 Team
Author URI: https://rescueplus.co.ke
Description: Custom 24/7 Breakdown Towing & Recovery WordPress Theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: rescueplus254
*/

:root {
    --primary-color: #ff6600;
    --secondary-color: #1a1a1a;
    --text-color: #333333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --gray-muted: #666666;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--secondary-color);
    border-bottom: 4px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: #dddddd;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu .current-menu-item a {
    color: var(--primary-color);
}

.nav-emergency-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-emergency-btn:hover {
    background-color: #e05500;
}

.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://rescueplus.co.ke/wp-content/uploads/2023/07/towing-and-recovery.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-banner h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-banner p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.section-padding { padding: 60px 0; }
.text-center { text-align: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--primary-color); }
.card i { font-size: 40px; color: var(--primary-color); margin-bottom: 15px; }
.card h3 { margin-bottom: 15px; font-size: 20px; }

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p, .footer-contact {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #cccccc; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }

.footer-contact div { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact i { color: var(--primary-color); }
.footer-bottom { border-top: 1px solid #333333; padding-top: 20px; text-align: center; font-size: 13px; color: #888888; }

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .nav-menu { flex-wrap: wrap; justify-content: center; }
}