/*
Theme Name: Chartered Venture Law
Theme URI: https://www.charteredventurelaw.co.uk
Author: Your Name
Description: A responsive WordPress theme for an international law firm. Built to work with free Elementor. Dynamic shortcodes for hero and content sections.
Version: 1.0
License: GPL v2 or later
Text Domain: chartered-venture-law
*/

/* Copy all the CSS from the final responsive HTML you provided (the previous answer's <style> block) into this file. */
/* For brevity, I'll include the full CSS from the last response. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #fefcf8;
  color: #1e2a3a;
  line-height: 1.5;
}
:root {
  --law-navy: #0b2b44;
  --law-gold: #c7a252;
  --law-gold-dark: #a07e3e;
  --law-cream: #fdfaf5;
  --law-gray: #f4f2ef;
  --law-border: #e5dfd7;
  --text-dark: #1f2e3a;
  --text-soft: #4a5b6b;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 20px 30px -12px rgba(0,0,0,0.08);
  --whatsapp-green: #25D366;
  --trustpilot-green: #00b67a;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--law-navy);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  border-left: 4px solid var(--law-gold);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
body, p, li, .section-subhead {
  font-size: 18px;
}
.btn-primary, .btn-outline-law, .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  min-height: 48px;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary { background: var(--law-navy); color: white; border: none; }
.btn-primary:hover { background: #0a3a5a; transform: translateY(-2px); }
.btn-outline-law { background: transparent; border: 1.5px solid var(--law-navy); color: var(--law-navy); }
.btn-outline-law:hover { background: var(--law-navy); color: white; }
.btn-gold { background: var(--law-gold); color: #0b2b44; border: none; }
.btn-gold:hover { background: var(--law-gold-dark); transform: translateY(-1px); }
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--whatsapp-green);
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 1000;
  text-decoration: none;
  font-size: 1rem;
  min-height: 48px;
}
.whatsapp-float i { font-size: 1.6rem; }
.live-badge { background: #dc3545; border-radius: 20px; padding: 3px 8px; font-size: 0.7rem; margin-left: 8px; }
.top-bar {
  background: var(--law-navy);
  color: #e0d6c6;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.navbar {
  background: white;
  border-bottom: 1px solid var(--law-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 24px;
  max-width: 1360px;
  margin: 0 auto;
}
.logo h1 { font-size: 1.8rem; color: var(--law-navy); }
.logo span { color: var(--law-gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--law-gold); }
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  min-width: 44px;
  text-align: center;
}
.hero {
  padding: 60px 0;
  background: linear-gradient(100deg, #fefcf8 0%, #f8f4ec 100%);
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.hero-content { flex: 1.2; }
.hero-stats {
  flex: 0.8;
  background: white;
  padding: 2rem;
  border-left: 4px solid var(--law-gold);
  box-shadow: var(--shadow-md);
}
.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.badge-item {
  background: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.practice-grid, .attorney-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}
.investor-table {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}
.practice-card, .investor-card, .attorney-card {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: 0.2s;
}
.practice-card:hover, .investor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.practice-card i, .investor-card i {
  font-size: 2.5rem;
  color: var(--law-gold);
  margin-bottom: 1rem;
}
.venture-about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}
.venture-text {
  flex: 1.5;
  background: white;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.venture-highlight {
  flex: 1;
  background: linear-gradient(135deg, var(--law-navy) 0%, #0f3a5a 100%);
  color: white;
  padding: 1.8rem;
  border-radius: 16px;
}
.testimonials-section { background: var(--law-gray); padding: 3rem 0; }
.slider-container { position: relative; max-width: 900px; margin: 2rem auto 0; overflow: hidden; border-radius: 16px; }
.slider-wrapper { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-slide { flex: 0 0 100%; background: white; padding: 2rem; border-radius: 16px; text-align: center; }
.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden; background: #e0d6cc; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: white; border: none; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; font-size: 1.2rem; box-shadow: var(--shadow-sm);
}
.btn-prev { left: 10px; }
.btn-next { right: 10px; }
.slider-dots { display: flex; justify-content: center; gap: 12px; margin-top: 1.5rem; }
.dot { width: 12px; height: 12px; background: var(--law-border); border-radius: 50%; cursor: pointer; }
.dot.active { background: var(--law-gold); }
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
}
.faq-item { border-bottom: 1px solid var(--law-border); padding: 1rem 0; }
.faq-question {
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.faq-answer { display: none; padding-top: 0.8rem; color: var(--text-soft); }
.contact-section { background: var(--law-gray); padding: 2rem; border-radius: 16px; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--law-border);
  border-radius: 8px;
  font-size: 1rem;
  min-height: 48px;
}
footer { background: var(--law-navy); color: #cfd5dc; padding: 3rem 0 2rem; margin-top: 3rem; }
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-grid h4 { font-size: 1.2rem; margin-bottom: 1rem; border-left: 2px solid var(--law-gold); padding-left: 0.75rem; }
.footer-grid a { color: #cfd5dc; text-decoration: none; display: block; margin: 0.5rem 0; }
.copyright { text-align: center; border-top: 1px solid #1f4a6e; margin-top: 2rem; padding-top: 1.5rem; font-size: 0.85rem; }
@media (min-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(3, 1fr); }
  .attorney-grid { grid-template-columns: repeat(3, 1fr); }
  .investor-table { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body, p { font-size: 16px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .attorney-grid { grid-template-columns: repeat(2, 1fr); }
  .investor-table { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--law-border);
    z-index: 99;
  }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .menu-icon { display: block; }
}
@media (max-width: 767px) {
  body, p { font-size: 16px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .practice-grid, .attorney-grid, .investor-table, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    gap: 0.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--law-border);
    z-index: 99;
  }
  .nav-links a { padding: 12px; text-align: center; width: 100%; }
  .menu-icon { display: block; }
  .top-bar .container { flex-direction: column; text-align: center; }
}