/* Green Car Club - Eco-Tech Aesthetics */
:root {
    --emerald: #10b981;
    --emerald-dark: #064e3b;
    --leaf: #ecfdf5;
    --slate: #1f2937;
    --gray: #6b7280;
    --white: #ffffff;
}

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

/* Header */
.eco-header { padding: 25px 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--leaf); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Exo 2', sans-serif; font-size: 26px; font-weight: 800; color: var(--emerald-dark); letter-spacing: -0.5px; }
.logo span { color: var(--emerald); }
.main-nav a { text-decoration: none; color: var(--slate); margin: 0 15px; font-weight: 600; font-size: 14px; }
.header-cta { background: var(--emerald-dark); color: white; padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; }

/* Hero */
.hero-eco { padding: 140px 0; background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%); }
.hero-content h1 { font-family: 'Exo 2', sans-serif; font-size: 58px; color: var(--emerald-dark); line-height: 1.1; margin-bottom: 30px; }
.hero-content p { font-size: 20px; color: var(--gray); max-width: 650px; margin-bottom: 45px; }
.btn-green { background: var(--emerald); color: white; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; margin-right: 15px; box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }
.btn-outline { border: 2px solid var(--emerald-dark); color: var(--emerald-dark); padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; }

/* Info Cards */
.info-grid { padding: 100px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card { padding: 45px; background: var(--leaf); border-radius: 24px; transition: 0.3s; }
.info-card:hover { transform: translateY(-10px); background: #d1fae5; }
.icon { font-size: 32px; margin-bottom: 20px; }
.info-card h3 { color: var(--emerald-dark); margin-bottom: 15px; font-size: 22px; }

/* Dark Section */
.dark-eco-section { background: var(--emerald-dark); color: white; padding: 120px 0; border-radius: 0 0 50px 50px; }
.split-view { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.view-text h2 { font-family: 'Exo 2', sans-serif; font-size: 42px; margin-bottom: 30px; }
.view-img img { width: 100%; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

/* Blog */
.blog-teasers { padding: 100px 0; }
.main-article { border-left: 6px solid var(--emerald); padding-left: 40px; }
.category { font-weight: 800; color: var(--emerald); font-size: 13px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.main-article h2 { font-family: 'Exo 2', sans-serif; font-size: 38px; margin-bottom: 25px; }

/* Map & Footer */
.map-wrapper { border-radius: 30px; overflow: hidden; margin-top: 50px; border: 8px solid var(--leaf); }
.eco-footer { background: #f9fafb; padding: 100px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-grid h4 { color: var(--emerald-dark); margin-bottom: 25px; font-family: 'Exo 2', sans-serif; }
.footer-grid a { color: var(--gray); text-decoration: none; display: block; margin-bottom: 12px; }
.social-links a { color: var(--emerald-dark); margin-right: 25px; font-weight: 800; }
.footer-bottom { border-top: 1px solid #e5e7eb; padding: 40px 0; text-align: center; font-size: 13px; color: var(--gray); }

/* Cookie Strip */
.cookie-strip { position: fixed; bottom: 30px; left: 30px; right: 30px; background: var(--white); border-radius: 20px; padding: 25px; border: 1px solid var(--leaf); z-index: 10000; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.strip-flex { display: flex; justify-content: space-between; align-items: center; }
.cookie-strip button { background: var(--emerald-dark); color: white; border: none; padding: 12px 35px; border-radius: 50px; cursor: pointer; font-weight: 700; }