/* ===== VARIABLES ===== */
:root {
  --color-primary: #c0392b;
  --color-primary-dark: #a93226;
  --color-blue: #34495e;
  --color-blue-light: #3d7eaa;
  --color-green: #5a9e6f;
  --color-coral: #c0776e;
  --color-gold: #c9a84c;
  --color-bg: #ffffff;
  --color-bg-light: #f8f8f8;
  --color-bg-section: #fafafa;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #e0e0e0;
  --color-white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --max-width: 1000px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

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

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

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

ul {
  list-style: none;
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo-img {
  height: 50px;
  margin-bottom: 1rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  letter-spacing: 3px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== VERTICAL LINES (decorative) ===== */
.page-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-lines::before,
.page-lines::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
  opacity: 0.4;
}

.page-lines::before { left: 0; }
.page-lines::after { right: 0; }

.page-lines .line-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33.33%;
  width: 1px;
  background: var(--color-border);
  opacity: 0.4;
}

.page-lines .line-inner-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66.66%;
  width: 1px;
  background: var(--color-border);
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--color-border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

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

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-logo-img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.nav-logo-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  font-family: var(--font-body);
}

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

.nav-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.nav-btn-blue {
  background: var(--color-blue);
  color: var(--color-white);
}

.nav-btn-blue:hover {
  background: #2c3e50;
  color: var(--color-white);
}

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

.nav-btn-red:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* German flag / language switcher */
.nav-flag {
  margin-left: 0.75rem;
  display: flex;
  align-items: center;
}

.nav-flag img {
  width: 24px;
  height: 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-flag img:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* DE nav sidebar */
.de-nav {
  margin-top: 2rem;
}

.de-nav ul {
  list-style: none;
}

.de-nav ul li {
  margin-bottom: 0.25rem;
}

.de-nav ul li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  border-left: 2px solid transparent;
  transition: var(--transition);
}

.de-nav ul li a:hover,
.de-nav ul li a.active {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  background: var(--color-bg-section);
}

/* DE hero image */
.de-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

/* DE layout */
.de-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .de-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.nav-bottom {
  display: flex;
  justify-content: center;
  padding: 0;
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-links a {
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 0.9rem 1.25rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

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

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  color: var(--color-text);
}

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

.dropdown-menu a::after { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  margin-top: 95px;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: block;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== INTRO SECTION (Homepage) ===== */
.intro-section {
  padding: 4rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.intro-left h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.intro-left h1 .accent {
  color: var(--color-primary);
}

.intro-award {
  margin: 2rem 0;
}

.intro-award img {
  max-height: 80px;
}

.intro-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.5;
  margin-top: 1.5rem;
}

.intro-right p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  text-align: justify;
}

/* ===== SERVICE BOXES (Homepage) ===== */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
  max-width: var(--max-width);
}

.service-box {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--color-white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: var(--transition);
}

.service-box:hover::before {
  background: rgba(0,0,0,0.08);
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-box-red { background: var(--color-primary); }
.service-box-blue { background: var(--color-blue); }
.service-box-green { background: var(--color-green); }
.service-box-coral { background: var(--color-coral); }

.service-box h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-box p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
  position: relative;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-line {
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  margin: 1rem auto;
}

/* ===== ANIMATED REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ===== CARDS ===== */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.25rem;
}

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

.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.team-photo {
  height: 240px;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.75rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.team-info p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== AWARDS ===== */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.award-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.award-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}

.award-item img {
  max-height: 100px;
  max-width: 160px;
}

/* ===== BRANDS ===== */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.brand-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.brand-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.brand-item img {
  max-height: 50px;
  max-width: 180px;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.contact-city {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--color-text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-card .address {
  margin: 1rem 0;
  font-style: normal;
}

.contact-card .phone {
  color: var(--color-text);
  font-weight: 600;
}

.contact-card .phone a {
  color: var(--color-text);
}

.contact-card .phone a:hover {
  color: var(--color-primary);
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.news-img {
  height: 200px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.04);
}

.news-body {
  padding: 1.5rem 2rem;
}

.news-date {
  font-size: 0.7rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.news-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-body p {
  color: var(--color-text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== CORPORATE SERVICES LIST ===== */
.service-category {
  margin-bottom: 2.5rem;
}

.service-category h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}

.service-list {
  display: grid;
  gap: 0.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.service-list li:hover {
  border-color: var(--color-border);
  background: var(--color-bg-section);
}

.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 0.55rem;
}

/* ===== LEGAL SERVICES LIST ===== */
.legal-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.legal-service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--color-text);
  font-size: 0.92rem;
}

.legal-service-item:hover {
  border-color: var(--color-primary);
  transform: translateX(3px);
  box-shadow: var(--shadow);
}

.legal-service-item .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-primary);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  margin-top: 95px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ===== LEGAL TEXT ===== */
.legal-text {
  max-width: 750px;
  margin: 0 auto;
}

.legal-text h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
  margin: 2.5rem 0 0.75rem;
}

.legal-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 2rem 0 0.6rem;
}

.legal-text p {
  color: var(--color-text-light);
  margin-bottom: 0.85rem;
  line-height: 1.8;
  font-size: 0.92rem;
}

.legal-text ul {
  margin: 0.75rem 0 1rem 1.5rem;
}

.legal-text ul li {
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
  padding-left: 0.5rem;
  position: relative;
  font-size: 0.92rem;
}

.legal-text ul li::before {
  content: '';
  position: absolute;
  left: -0.85rem;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

.legal-text a {
  color: var(--color-primary);
  border-bottom: 1px solid transparent;
}

.legal-text a:hover {
  border-bottom-color: var(--color-primary);
}

.legal-text .address-block {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin: 1.25rem 0;
  line-height: 1.7;
  font-size: 0.92rem;
  color: var(--color-text-light);
}

/* ===== NOTE BOX ===== */
.note-box {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.75rem;
  color: var(--color-text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
}

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

/* ===== EXPANDED FOOTER (subpages) ===== */
.footer-expanded {
  background: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--color-text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.footer-expanded h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: var(--color-text-light);
  font-size: 0.82rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

/* ===== COUNTER ANIMATION ===== */
.counter {
  display: inline-block;
}

/* ===== BTN ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-bottom {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    border-left: 1px solid var(--color-border);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 2rem;
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }

  .nav-links a::after { display: none; }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    opacity: 1;
    visibility: visible;
    min-width: unset;
  }

  .hero { margin-top: 65px; }
  .page-hero { margin-top: 65px; min-height: 200px; }

  .hero-image img { height: 220px; }

  .intro-left h1 { font-size: 1.8rem; }

  .section { padding: 3rem 0; }

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid,
  .team-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .nav-buttons {
    gap: 0.3rem;
  }

  .nav-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .service-boxes {
    grid-template-columns: 1fr;
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
