/*
Theme Name: Aura Drive Theme
Theme URI: https://auradrive.pk
Author: Aura Drive
Description: Custom high-converting theme for Aura Drive Rent a Car Islamabad.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aura-drive
*/
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PTS4DJ8G');</script>
<!-- End Google Tag Manager -->
:root {
    --primary-red: #A82E2E;
    --primary-hover: #832020;
    --bg-cream: #FAF7F2;
    --text-dark: #1C1C1C;
    --text-muted: #555555;
    --card-white: #FFFFFF;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1EBE5D;
    --border-light: #E2DDD5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding: 8px 5%;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info a {
    color: var(--bg-cream);
    text-decoration: none;
}

/* Header & Nav */
header {
    background-color: var(--card-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    background-color: var(--primary-red);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 8px 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.header-cta {
    background-color: var(--primary-red);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.header-cta:hover {
    background-color: var(--primary-hover);
}

/* Hero Section */
.hero {
    padding: 80px 5%;
    background: linear-gradient(135deg, #FAF7F2 0%, #EFE9DF 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: background-color 0.3s, transform 0.2s;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-red);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-hover);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.car-card {
    background: var(--card-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.car-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.car-specs {
    list-style: none;
    margin: 15px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.car-specs li {
    margin-bottom: 6px;
}

.car-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-red);
    margin-top: auto;
    margin-bottom: 15px;
}

.car-price span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: normal;
}

.card-btn {
    display: block;
    text-align: center;
    background-color: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.card-btn:hover {
    background-color: var(--whatsapp-hover);
}

/* Info & SEO Sections */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.feature-box {
    background: var(--card-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.feature-box h3 {
    margin-bottom: 10px;
    color: var(--primary-red);
}

.info-content-box {
    background: var(--card-white);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    margin-top: 30px;
}

.info-content-box h3 {
    color: var(--primary-red);
    margin: 20px 0 10px 0;
}

.info-content-box ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Contact Details Card */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--card-white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h4 {
    color: var(--primary-red);
    font-size: 16px;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: #CCCCCC;
    padding: 40px 5% 20px 5%;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333333;
    padding-top: 20px;
    color: #888888;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 30px; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
}