/*
Theme Name: JLR Activations
Theme URI: https://jlr-activations.com
Author: JLR Activations Team
Author URI: https://jlr-activations.com
Description: Professional WordPress theme for Jaguar Land Rover feature activations, retrofits, coding services and factory power upgrades. Built with SEO optimization, custom fields support, and responsive design.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jlr-activations
Domain Path: /languages
Tags: automotive, jlr, jaguar, land-rover, responsive, seo, custom-fields, dark-theme
*/

/* ============================================
   JLR ACTIVATIONS - Global Stylesheet
   Theme: JLR Dark Green Professional
   ============================================ */

/* CSS Variables */
:root {
  --jlr-dark-green: #0A1F15;
  --jlr-primary-green: #004225;
  --jlr-light-green: #00A86B;
  --jlr-hover-green: #00C97A;
  --jlr-gold: #C9A227;
  --jlr-gold-light: #E8C84A;
  --jlr-white: #FFFFFF;
  --jlr-off-white: #F5F5F5;
  --jlr-light-gray: #E8E8E8;
  --jlr-mid-gray: #999999;
  --jlr-dark-gray: #333333;
  --jlr-black: #000000;
  --jlr-accent-red: #C41E3A;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--jlr-dark-green);
  color: var(--jlr-off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--jlr-light-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--jlr-hover-green);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--jlr-white);
  margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--jlr-light-gray);
}

.text-gold { color: var(--jlr-gold); }
.text-green { color: var(--jlr-light-green); }
.text-white { color: var(--jlr-white); }
.text-gray { color: var(--jlr-mid-gray); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  text-align: center;
}

.btn-primary {
  background-color: var(--jlr-light-green);
  color: var(--jlr-white);
  border-color: var(--jlr-light-green);
}

.btn-primary:hover {
  background-color: var(--jlr-hover-green);
  border-color: var(--jlr-hover-green);
  color: var(--jlr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--jlr-light-green);
  border-color: var(--jlr-light-green);
}

.btn-secondary:hover {
  background-color: var(--jlr-light-green);
  color: var(--jlr-white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--jlr-gold);
  color: var(--jlr-dark-green);
  border-color: var(--jlr-gold);
}

.btn-gold:hover {
  background-color: var(--jlr-gold-light);
  border-color: var(--jlr-gold-light);
  color: var(--jlr-dark-green);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 31, 21, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 168, 107, 0.2);
  transition: all var(--transition-medium);
}

.header.scrolled {
  background: rgba(10, 31, 21, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jlr-white);
  letter-spacing: 1px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--jlr-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--jlr-white);
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: var(--jlr-off-white);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--jlr-hover-green);
  background: rgba(0, 168, 107, 0.1);
}

.nav-cta {
  background: var(--jlr-light-green);
  color: var(--jlr-white) !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--jlr-hover-green);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--jlr-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--jlr-dark-green) 0%, var(--jlr-primary-green) 50%, #0d2b1a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300a86b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 168, 107, 0.15);
  border: 1px solid var(--jlr-light-green);
  border-radius: 50px;
  color: var(--jlr-light-green);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: var(--jlr-gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--jlr-light-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--jlr-gold);
  display: block;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--jlr-mid-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(0, 66, 37, 0.3);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--jlr-gold);
}

.section-header p {
  color: var(--jlr-mid-gray);
  font-size: 1.1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--jlr-light-green);
  margin: 1rem auto;
  border-radius: 2px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 168, 107, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--jlr-light-green);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.card:hover {
  border-color: rgba(0, 168, 107, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 107, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--jlr-light-green);
}

.card-icon .icon-svg {
  width: 32px;
  height: 32px;
  stroke: var(--jlr-light-green);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.card p {
  color: var(--jlr-mid-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature List */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .check {
  color: var(--jlr-light-green);
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.feature-list .check .icon-check {
  width: 16px;
  height: 16px;
  margin: 0;
}

.icon-check {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  flex-shrink: 0;
  stroke: var(--jlr-light-green);
}

/* Vehicle Grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.vehicle-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 168, 107, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-medium);
}

.vehicle-card:hover {
  border-color: var(--jlr-light-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.vehicle-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.vehicle-card span {
  font-size: 0.85rem;
  color: var(--jlr-mid-gray);
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 168, 107, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--jlr-gold);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.15);
}

.pricing-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jlr-gold);
  color: var(--jlr-dark-green);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card:hover {
  border-color: rgba(0, 168, 107, 0.4);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--jlr-gold);
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--jlr-mid-gray);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  color: var(--jlr-light-gray);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--jlr-white);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--jlr-light-green);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--jlr-mid-gray);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--jlr-light-green);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 168, 107, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.blog-card:hover {
  border-color: rgba(0, 168, 107, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--jlr-primary-green), var(--jlr-dark-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-image .icon-svg {
  width: 64px;
  height: 64px;
  stroke: var(--jlr-light-green);
  opacity: 0.6;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--jlr-mid-gray);
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--jlr-mid-gray);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 168, 107, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--jlr-light-green);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--jlr-light-gray);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--jlr-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--jlr-white);
}

.testimonial-name {
  font-weight: 600;
  color: var(--jlr-white);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--jlr-mid-gray);
}

/* Process Steps */
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: var(--jlr-light-green);
  opacity: 0.3;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--jlr-light-green);
  color: var(--jlr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--jlr-mid-gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--jlr-primary-green), #0d2b1a);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300a86b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--jlr-light-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--jlr-black);
  border-top: 1px solid rgba(0, 168, 107, 0.2);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--jlr-mid-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--jlr-light-green);
  color: var(--jlr-white);
}

.footer-column h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: var(--jlr-gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--jlr-mid-gray);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--jlr-light-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--jlr-mid-gray);
  font-size: 0.85rem;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 168, 107, 0.1);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--jlr-mid-gray);
}

.breadcrumb-inner a {
  color: var(--jlr-light-green);
}

.breadcrumb-inner a:hover {
  color: var(--jlr-hover-green);
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--jlr-dark-green) 0%, var(--jlr-primary-green) 100%);
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--jlr-mid-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Styles */
.content-page {
  padding: 3rem 0 5rem;
}

.content-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 168, 107, 0.2);
}

.content-page h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--jlr-gold);
}

.content-page ul, .content-page ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
  color: var(--jlr-light-gray);
}

.content-page strong {
  color: var(--jlr-white);
}

.content-page blockquote {
  border-left: 3px solid var(--jlr-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--jlr-mid-gray);
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead {
  background: rgba(0, 168, 107, 0.1);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--jlr-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--jlr-light-green);
}

td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--jlr-light-gray);
}

tr:hover td {
  background: rgba(0, 168, 107, 0.05);
}

/* Tag/Badge */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 168, 107, 0.15);
  border: 1px solid rgba(0, 168, 107, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--jlr-light-green);
  margin: 0.25rem;
}

.tag-gold {
  background: rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.3);
  color: var(--jlr-gold);
}

/* Alert/Info Box */
.info-box {
  background: rgba(0, 168, 107, 0.08);
  border-left: 3px solid var(--jlr-light-green);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.info-box h4 {
  color: var(--jlr-light-green);
  margin-bottom: 0.5rem;
}

.warning-box {
  background: rgba(201, 162, 39, 0.08);
  border-left-color: var(--jlr-gold);
}

.warning-box h4 {
  color: var(--jlr-gold);
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--jlr-light-green);
  color: var(--jlr-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--jlr-hover-green);
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--jlr-dark-green);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(0, 168, 107, 0.2);
    gap: 0;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-stat-number {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card-grid,
  .pricing-grid,
  .blog-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* WordPress Specific */
.wp-block-image img {
  border-radius: var(--radius-md);
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--jlr-mid-gray);
  text-align: center;
  margin-top: 0.5rem;
}

/* Gutenberg Block Styles */
.wp-block-quote {
  border-left: 3px solid var(--jlr-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--jlr-mid-gray);
}

.wp-block-table table {
  width: 100%;
}

.wp-block-separator {
  border: none;
  border-top: 1px solid rgba(0, 168, 107, 0.2);
  margin: 2rem 0;
}

/* Admin Bar Fix */
body.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}
