/* Aaron Fox Law - Exact Clone Styles */

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

:root {
  --primary-blue: #00266A;
  --primary-orange: #FF5C35;
  --light-blue: #6EA1FF;
  --dark-bg: #0A1628;
  --light-bg: #f7f9fc;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --text-gray: #333333;
  --white: #ffffff;
  --border-color: #e6eaf0;
  --highlight-yellow: #FFE5A6;
  --gradient-blue: linear-gradient(180deg, #6EA1FF -83%, #00266A 116%);
  --shadow-card: 0 0 33px rgba(0, 0, 0, 0.04);
  --shadow-light: 0 1px 0 rgba(16, 24, 40, 0.02);
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

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

a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-blue);
}

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

h1 { font-size: 42px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

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

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

.section {
  padding: 80px 0;
}

/* ==================== HEADER ==================== */
.header {
  background: var(--white);
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: height 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  width: 205px;
  height: auto;
  max-height: 85px;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

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

.nav-cta {
  background: var(--primary-orange) !important;
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 280px;
  padding: 16px 0;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 12px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--primary-orange);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  background: var(--white);
  padding: 60px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero-content .subtitle {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-content > p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-gray);
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.feature-list .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.feature-list span {
  color: var(--text-gray);
}

.feature-list b {
  color: var(--text-dark);
  font-weight: 600;
}

.hero-image img {
  width: 100%;
  max-width: 540px;
  height: auto;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 17px 32px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.btn-outline:hover {
  background: var(--primary-orange);
  color: var(--white);
}

/* ==================== STATS SECTION ==================== */
.stats {
  background: var(--white);
  padding: 60px 0;
}

.stats h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why-choose {
  background: var(--light-bg);
  padding: 80px 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 465px;
}

.why-choose-content h2 {
  margin-bottom: 24px;
}

.why-choose-content p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
  background: var(--white);
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 24px;
}

.trust-item img {
  margin: 0 auto 20px;
}

.trust-item h6 {
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 18px;
}

.trust-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
}

/* ==================== SERVING SECTION ==================== */
.serving-section {
  background: var(--light-bg);
  padding: 80px 0;
}

/* ==================== PRACTICE AREAS ==================== */
.practice-areas {
  background: var(--light-bg);
  padding: 80px 0;
}

.practice-areas h2 {
  text-align: center;
  margin-bottom: 16px;
}

.practice-areas > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--text-light);
  font-size: 18px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.area-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.area-card h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.area-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.area-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 15px;
}

.area-card .learn-more:hover {
  gap: 12px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: var(--white);
  padding: 80px 0;
}

.reviews-badge {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.reviews-badge img {
  height: 50px;
  width: auto;
}

.reviews-badge h2 {
  margin: 0;
  font-size: 32px;
}

.testimonials > .container > h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.testimonial-content b {
  background-color: var(--highlight-yellow);
  font-weight: 400;
  padding: 2px 0;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 16px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
}

/* ==================== STEPS SECTION ==================== */
.steps {
  background: var(--white);
  padding: 80px 0;
}

.steps h2 {
  text-align: center;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step-item {
  text-align: center;
  padding: 24px;
}

.step-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.step-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.step-item h6 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 16px;
  font-weight: 600;
}

.step-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ==================== CONTACT FORM ==================== */
.contact-form-section {
  background: var(--gradient-blue);
  padding: 80px 0;
}

.contact-form-section h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
}

.contact-form-section > .container > p {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 17px 0;
  background: var(--primary-orange);
  color: var(--white);
  border: 2px solid var(--primary-orange);
  border-radius: var(--border-radius);
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--white);
  color: var(--primary-orange);
}

.form-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 80px 0 40px;
}

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

.footer-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.footer-info {
  grid-column: 1;
}

.footer-logo-img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--primary-orange);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

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

.footer-social a:hover {
  background: var(--primary-orange);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 24px;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

/* ==================== BLOG STYLES ==================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h2 a {
  color: var(--primary-blue);
}

.blog-card h2 a:hover {
  color: var(--primary-orange);
}

.blog-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card .read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-orange);
  font-size: 15px;
}

/* Blog Post Article */
.blog-post {
  padding: 60px 0;
  background: var(--light-bg);
}

.blog-post .container {
  max-width: 800px;
}

.blog-header {
  margin-bottom: 40px;
}

.blog-header .back-link {
  display: inline-block;
  color: var(--primary-orange);
  font-weight: 500;
  margin-bottom: 24px;
  font-size: 15px;
}

.blog-header h1 {
  color: var(--primary-blue);
  font-size: 36px;
  line-height: 1.3;
}

.blog-content {
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
}

.blog-content h2 {
  color: var(--primary-blue);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.blog-content h3 {
  color: var(--primary-blue);
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 22px;
}

.blog-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.blog-content ul,
.blog-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.blog-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-content img {
  border-radius: var(--border-radius);
  margin: 24px 0;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary-orange);
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-light);
}

.blog-cta {
  background: var(--primary-blue);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  margin-top: 48px;
  text-align: center;
}

.blog-cta h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.blog-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 48px;
}

/* Page Content (for generated pages) */
.page-content {
  line-height: 1.8;
}

.page-content h2 {
  color: var(--primary-blue);
  margin-top: 32px;
}

.page-content h3 {
  color: var(--primary-blue);
  margin-top: 24px;
}

.page-content ul,
.page-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content img {
  border-radius: var(--border-radius);
  margin: 16px 0;
}

/* ==================== ABOUT PAGE ==================== */
.about-hero {
  background: var(--white);
  padding: 80px 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-content h1 {
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.about-hero-content .subtitle {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 24px;
}

.media-badge {
  margin: 24px 0 8px;
}

.media-text {
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
}

.about-hero-image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 500px;
}

.founder-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder-image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 450px;
}

.founder-content h5 {
  color: var(--primary-orange);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.founder-content h2 {
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.founder-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.practice-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.practice-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-blue);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.practice-link:hover {
  color: var(--primary-orange);
}

.approach-section {
  background: var(--white);
  padding: 80px 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.approach-item {
  text-align: center;
  padding: 24px;
}

.approach-item img {
  margin: 0 auto 20px;
}

.approach-item h6 {
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 18px;
}

.approach-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.serving-about {
  padding: 80px 0;
}

.serving-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.serving-content h2 {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.serving-image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
}

.cta-section {
  background: var(--white);
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--primary-blue);
}

/* ==================== CONTACT PAGE ==================== */
.contact-hero {
  background: var(--white);
  padding: 80px 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-hero-content h6 {
  color: var(--primary-orange);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-hero-content h1 {
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.gradient-form {
  background: var(--gradient-blue);
  padding: 40px;
  border-radius: var(--border-radius-lg);
}

.gradient-form h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.issues-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.issue-item,
.process-item {
  text-align: center;
  padding: 24px;
}

.issue-item img,
.process-item img {
  margin: 0 auto 20px;
}

.issue-item h6,
.process-item h6 {
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 18px;
}

.issue-item p,
.process-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.location-section {
  background: var(--white);
  padding: 80px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.location-info h5 {
  color: var(--primary-orange);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.location-info p {
  margin-bottom: 12px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
    text-align: center;
  }

  .hero-image img {
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-item {
    justify-content: center;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-info {
    grid-column: span 2;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-image {
    text-align: center;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .serving-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .issues-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }

  .header {
    height: 70px;
  }

  .logo img {
    width: 160px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content .subtitle {
    font-size: 20px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-card);
    gap: 0;
  }

  .nav.active {
    display: flex;
  }

  .nav > a,
  .nav > .nav-dropdown {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-cta {
    text-align: center;
    margin-top: 16px;
    border-bottom: none !important;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    padding: 8px 0 0 16px;
    min-width: auto;
    display: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-info {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .reviews-badge {
    flex-direction: column;
    gap: 16px;
  }

  .issues-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gradient-form {
    padding: 24px;
  }

  .stat-number {
    font-size: 48px;
  }

  .blog-content {
    padding: 24px;
  }

  .blog-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .btn {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .area-card {
    padding: 24px;
  }

  .testimonial-slide {
    padding: 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-cta {
    padding: 32px 24px;
  }

  .contact-form-section {
    padding: 60px 0;
  }
}
