/* ============================================
   FULLBROOK LAW - PREMIUM MODERN DESIGN
   Racing Green & White Colour Scheme
   ============================================ */

/* Root Variables */
:root {
  --primary: #004225;
  --primary-hover: #006B3A;
  --text-primary: #1d1d1f;
  --text-secondary: #424245;
  --text-tertiary: #86868b;
  --background-white: #ffffff;
  --background-light: #f0f6f2;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--background-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

ul li, ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

/* ============================================
   TOP INFO BAR
   ============================================ */

.top-bar {
  background: var(--primary);
  color: white;
  font-size: 1rem;
  padding: 0.65rem 2.5rem;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.01em;
}

.top-bar-contact:hover {
  opacity: 0.85;
  color: white;
}

.top-bar-icon {
  width: 18px;
  height: 18px;
  color: white;
  flex-shrink: 0;
}

/* ============================================
   NAVIGATION - FROSTED GLASS
   ============================================ */

.nav-toggle {
  display: none;
}

.nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.25rem 2.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  min-height: 70px;
}

.logo-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 0.15rem;
}

.logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 2.5px solid var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-box:hover {
  color: var(--primary);
  opacity: 0.8;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-bottom: 0;
}

.nav-menu li a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

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

/* Mobile Hamburger Menu */
.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.4rem;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  display: block;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION - ANIMATED GRADIENT
   ============================================ */

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes waveAnimation {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(2%) translateY(1%);
  }
  50% {
    transform: translateX(0) translateY(0);
  }
  75% {
    transform: translateX(-2%) translateY(-1%);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

.hero {
  color: white;
  padding: 120px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('pexels-lina-4371675.jpg') center center / 120% no-repeat;
  filter: grayscale(100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 66, 37, 0.8);
  pointer-events: none;
}

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

.hero-title {
  font-size: 3.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-weight: 400;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in:nth-of-type(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-of-type(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-of-type(3) {
  animation-delay: 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 980px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
}

.btn-hero {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.btn-hero:hover {
  background: transparent;
  color: white;
  border: 2px solid white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
}

/* ============================================
   SECTIONS
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 80px 0;
}

.section-white {
  background: var(--background-white);
}

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

.section-light {
  background: var(--background-light);
}

/* ============================================
   EXPERTISE CARDS (Stormcatcher-inspired)
   ============================================ */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.expertise-card {
  background: white;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(0, 66, 37, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 66, 37, 0.12);
  color: inherit;
}

.expertise-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
  border-radius: 10px;
  padding: 0.6rem;
}

.expertise-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary);
}

.expertise-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.expertise-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  margin: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   PROCESS GRID
   ============================================ */

.section-compact {
  padding: 30px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.process-step {
  text-align: center;
  padding: 0.5rem;
}

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

.process-step p {
  margin-bottom: 0;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.testimonial {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

.section-white h2 {
  margin-bottom: 1.25rem;
}

.section-no-bottom {
  padding-bottom: 0;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--primary);
  color: white;
  padding: 60px 2rem;
  text-align: center;
  margin: 0;
}

.cta-band h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.cta-band .btn:hover {
  background: transparent;
  color: white;
  border-color: white;
}

/* ============================================
   INTRO TEXT
   ============================================ */

.intro-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.notice-box {
  background: var(--background-light);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 0;
}

/* Tighter section for standalone notice */
.section-notice {
  padding: 40px 0;
}

.about-zak {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: stretch;
}

.about-zak-reverse {
  grid-template-columns: 1fr 320px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 66, 37, 0.15);
}

.about-photo-zoom {
  object-position: center 20%;
}

@media (max-width: 768px) {
  .about-zak,
  .about-zak-reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    max-width: 260px;
    margin: 0 auto;
  }
}

.about-text {
  line-height: 1.8;
}

.about-text-full {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-text-full p {
  text-align: left;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 66, 37, 0.1);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.05);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.highlight-box {
  background: var(--background-light);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.highlight-list {
  list-style: none;
  padding: 0;
}

.highlight-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.highlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   SERVICES PAGE - DETAIL SECTIONS
   ============================================ */

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.list-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 66, 37, 0.1);
}

.list-item h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.help-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 66, 37, 0.1);
  text-align: center;
  transition: var(--transition);
}

.help-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.help-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ============================================
   CONTACT PAGE - SHOWCASE
   ============================================ */

.contact-showcase {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-showcase-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  background: var(--background-light);
  border-radius: 16px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-showcase-card:hover {
  border-color: rgba(0, 66, 37, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 66, 37, 0.12);
  color: inherit;
}

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

.contact-showcase-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 66, 37, 0.2);
}

.contact-showcase-card:hover .contact-showcase-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 66, 37, 0.25);
}

.contact-showcase-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.contact-showcase-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.contact-showcase-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.contact-showcase-card:hover .contact-showcase-value {
  color: var(--primary);
}

.contact-showcase-hint {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.contact-showcase-card:hover .contact-showcase-hint {
  opacity: 1;
  transform: translateY(0);
}

.contact-showcase-location {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--background-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  text-align: left;
}

.contact-showcase-location-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-showcase-location-icon svg {
  width: 100%;
  height: 100%;
}

.contact-showcase-location p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(0, 66, 37, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 66, 37, 0.2);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 66, 37, 0.1);
}

.contact-form button {
  width: 100%;
  margin-top: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-top: 1rem;
  text-align: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 66, 37, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 66, 37, 0.04);
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  background: white;
  user-select: none;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '▼';
  color: var(--primary);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-item[open] {
  border-left: 3px solid var(--primary);
}

.faq-item[open] summary {
  background: white;
  border-bottom: 1px solid rgba(0, 66, 37, 0.1);
  color: var(--primary);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-content {
  padding: 1.5rem;
  padding-top: 1rem;
  background: white;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary);
  color: white;
  padding: 40px 0 10px;
  margin-top: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  flex: 1;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 2.5px solid white;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
}

.footer-logo-box:hover {
  color: white;
  opacity: 0.8;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.footer-logo-tagline {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 0.15rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex-shrink: 0;
}

.footer-section h3 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-section p {
  color: white;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.35rem;
}

.footer-section a {
  color: white;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 2px;
}

.footer-section a:hover {
  color: white;
  text-decoration-color: white;
}

.footer-reg {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.2rem;
  line-height: 1.5;
}

.footer-reg a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 2px;
}

.footer-reg a:hover {
  color: white;
  text-decoration-color: white;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: white;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.4rem;
  padding-bottom: 0;
  text-align: center;
  color: white;
}

.footer-bottom p {
  color: white;
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================
   STATS BANNER
   ============================================ */

.stats-band {
  background: var(--primary);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ============================================
   VALUE CARD ICONS
   ============================================ */

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   COMPLAINTS PAGE
   ============================================ */

.complaints-intro {
  padding-bottom: 1rem;
}

.complaint-step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.complaint-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  background: var(--primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
}

.complaint-step-content {
  flex: 1;
}

.complaint-step-content h2 {
  margin-bottom: 1rem;
}

.complaint-step-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.complaint-contact-card {
  background: white;
  border: 1px solid rgba(0, 66, 37, 0.12);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.complaint-contact-card h4 {
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.complaint-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.complaint-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.complaint-contact-item a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(0, 66, 37, 0.3);
  text-underline-offset: 2px;
}

.complaint-contact-item a:hover {
  text-decoration-color: var(--primary);
}

.complaint-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .nav {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  .logo-tagline {
    font-size: 0.65rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-box {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    gap: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-toggle:checked + .nav .nav-menu {
    max-height: 500px;
  }

  .nav-toggle-label {
    display: flex;
  }

  .nav-toggle:checked + .nav .hamburger:nth-of-type(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle:checked + .nav .hamburger:nth-of-type(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav .hamburger:nth-of-type(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .section {
    padding: 50px 0;
  }

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

  .top-bar {
    padding: 0.4rem 1rem;
  }

  .top-bar-inner {
    gap: 1.5rem;
  }

  .top-bar-contact {
    font-size: 0.85rem;
  }

  .stats-grid {
    gap: 2rem;
  }

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

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

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    gap: 2rem;
  }

  .contact-showcase-grid {
    grid-template-columns: 1fr;
  }

  .contact-showcase-value {
    font-size: 1.4rem;
  }

  .contact-showcase-location {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .complaint-step {
    flex-direction: column;
    gap: 1.5rem;
  }

  .complaint-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-number {
    font-size: 1.8rem;
  }
}

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 40px 0;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

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

  .top-bar-inner {
    flex-direction: column;
    gap: 0.3rem;
  }

  .top-bar-contact {
    font-size: 0.8rem;
  }

  .contact-showcase-card {
    padding: 2rem 1.5rem;
  }

  .contact-showcase-value {
    font-size: 1.2rem;
  }

  .contact-showcase-icon-wrap {
    width: 60px;
    height: 60px;
  }

  .contact-showcase-icon {
    width: 26px;
    height: 26px;
  }

  .cta-band {
    padding: 40px 1.5rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .nav {
    display: none;
  }

  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  .service-card,
  .value-card,
  .list-item {
    page-break-inside: avoid;
  }
}
