/* Car Hire Maidstone - Professional Visual Identity */
:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; color: var(--dark); line-height: 1.6; background: var(--white); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.header { padding: 20px 0; background: var(--white); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; }
.header-grid { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 20px; display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--primary); }
.nav a { margin: 0 15px; text-decoration: none; color: var(--dark); font-weight: 600; font-size: 14px; }
.cta-header { background: var(--primary); color: var(--white); padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 13px; }

/* Hero */
.hero { padding: 100px 0; background: #f1f5f9; position: relative; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 52px; line-height: 1.1; margin-bottom: 25px; }
.hero-text p { font-size: 18px; color: var(--gray); max-width: 600px; margin-bottom: 35px; }
.btn-main { background: var(--dark); color: white; padding: 15px 35px; text-decoration: none; font-weight: 700; display: inline-block; border-radius: 4px; margin-right: 15px; }
.btn-sub { border: 2px solid var(--dark); color: var(--dark); padding: 13px 35px; text-decoration: none; font-weight: 700; display: inline-block; border-radius: 4px; }

/* Blocks */
.deep-content { padding: 80px 0; }
.deep-content h2 { margin-bottom: 20px; font-size: 32px; }
.deep-content p { margin-bottom: 20px; font-size: 16px; color: #334155; text-align: justify; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-bottom: 80px; }
.card { padding: 40px; background: var(--light); border-radius: 12px; }
.card .icon { color: var(--primary); margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; }

.bg-alt { background: #1e293b; color: white; padding: 100px 0; }
.tag { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 12px; }
.article h2 { font-size: 36px; margin: 15px 0 25px; }

.map { padding: 80px 0; text-align: center; }
.map-box { margin-top: 40px; border-radius: 15px; overflow: hidden; border: 5px solid #f1f5f9; }

/* Footer */
.footer { background: var(--dark); color: #94a3b8; padding: 80px 0 0; }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 50px; }
.footer h4, .footer h5 { color: white; margin-bottom: 20px; }
.footer a { color: #94a3b8; text-decoration: none; display: block; margin-bottom: 10px; font-size: 14px; }
.soc a { display: inline-block; margin-right: 15px; color: var(--primary); font-weight: 800; }
.bottom-bar { border-top: 1px solid #1e293b; padding: 30px 0; text-align: center; font-size: 12px; }

/* Cookie */
.cookie-strip { position: fixed; bottom: 0; width: 100%; background: #fff; border-top: 4px solid var(--primary); padding: 15px 0; z-index: 1000; box-shadow: 0 -10px 30px rgba(0,0,0,0.1); }
.flex-cookie { display: flex; justify-content: space-between; align-items: center; }
.cookie-strip button { background: var(--dark); color: white; border: none; padding: 8px 20px; cursor: pointer; font-weight: 700; }