/* MHF Construction - Styles */

:root {
  --primary-red: #C01F31;
  --primary-red-dark: #8A1624;
  --primary-red-light: #D94452;
  --primary-black: #000000;
  --primary-black-light: #1A1A1A;
  --primary-gold: #DD9300;
  --primary-gold-dark: #B37700;
  --primary-gold-light: #FFAB1A;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #6B7280;
  --gray-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-black);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* Header */
.header {
  background: var(--primary-black);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--white);
}

.logo-text span {
  color: var(--primary-gold);
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

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

.nav a {
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--primary-black);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-black-light) 100%);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Section Titles */
.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 2.2rem;
  color: var(--primary-black);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 40px;
  margin-top: 20px;
}

/* Services Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary-gold);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-black);
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Services Mini Grid (Homepage) */
.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-mini {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 3px solid var(--primary-gold);
}

.service-mini-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.service-mini span {
  font-weight: 600;
  color: var(--primary-black);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .services-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.about-text p {
  color: var(--gray-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-black);
  font-weight: 500;
}

.about-feature::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--primary-gold);
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.about-image {
  border-radius: 12px;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  justify-content: center;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.portfolio-item {
  display: block;
  background: var(--primary-black);
  border-radius: 12px;
  height: 300px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  margin: 0 auto;
  max-width: 100%;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover::before {
  opacity: 1;
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

/* Stats */
.stats {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  padding: 60px 0;
  color: var(--white);
}

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

.stat-item h3 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Contact Form */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-black);
}

.contact-info p {
  color: var(--gray-dark);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gray-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-red);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--primary-black);
}

.contact-item p {
  color: var(--gray);
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
}

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

/* Footer */
.footer {
  background: var(--primary-black);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-about p {
  color: #999;
  margin-top: 15px;
  line-height: 1.8;
}

.footer h4 {
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links a {
  display: block;
  color: #999;
  padding: 8px 0;
  transition: color 0.3s;
}

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

.footer-contact p {
  color: #999;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #999;
  margin-top: 10px;
  transition: color 0.3s;
}

.footer-social:hover {
  color: #0077b5;
}

/* LinkedIn Button (Contact page) */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0077b5;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  margin-top: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.linkedin-btn i {
  font-size: 1.4rem;
}

.linkedin-btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #666;
  margin-left: 20px;
  transition: color 0.3s;
}

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

/* Contact Page */
.hero-small {
  padding: 60px 0;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-black), var(--primary-black-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.2rem;
  margin-top: 30px;
}

.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

.success-message.show {
  display: block;
}

.contact-link {
  color: var(--primary-red);
}

.contact-link:hover {
  text-decoration: underline;
}

.btn-full {
  width: 100%;
}

.form-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--gray);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

.lightbox-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 70vh;
  position: relative;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--primary-gold);
  color: var(--primary-black);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-counter {
  color: var(--gray);
  margin-top: 15px;
  font-size: 0.9rem;
}

.lightbox-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  max-width: 90vw;
  overflow-x: auto;
  padding: 10px 0;
}

.lightbox-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.lightbox-thumb:hover {
  opacity: 0.8;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--primary-gold);
}

@media (max-width: 768px) {
  .lightbox-nav {
    position: fixed;
    top: auto;
    bottom: 100px;
    transform: none;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .lightbox-image {
    max-width: 95vw;
    max-height: 50vh;
  }

  .lightbox-thumb {
    width: 60px;
    height: 45px;
  }
}

/* Project Page */
.project-header {
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-black-light) 100%);
  color: var(--white);
  padding: 60px 0;
}

.project-header h1 span {
  color: var(--primary-gold);
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-top: 10px;
}

.project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.project-description h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-black);
}

.project-description p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 15px;
}

.project-details {
  margin-top: 30px;
  padding: 25px;
  background: var(--gray-light);
  border-radius: 12px;
}

.project-details h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.project-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.project-detail-item:last-child {
  border-bottom: none;
}

.project-detail-item span:first-child {
  color: var(--gray);
}

.project-detail-item span:last-child {
  font-weight: 600;
  color: var(--primary-black);
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.project-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.project-main-image:hover {
  transform: scale(1.02);
}

.project-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
}

.project-thumb {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s;
  border: 3px solid transparent;
}

.project-thumb:hover {
  opacity: 1;
}

.project-thumb.active {
  opacity: 1;
  border-color: var(--primary-gold);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  margin-bottom: 25px;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.back-link:hover {
  background: var(--primary-gold);
  color: var(--primary-black);
}

@media (max-width: 992px) {
  .project-content {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    order: -1;
  }
}

@media (max-width: 768px) {
  .project-main-image {
    height: 300px;
  }

  .project-thumb {
    height: 60px;
  }
}

/* Carousel */
.carousel-section {
  background: var(--gray-light);
}

.carousel {
  position: relative;
  max-width: 100%;
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 70vh;
  max-height: 700px;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 40px 20px 20px;
  color: var(--white);
}

.carousel-caption h4 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.carousel-caption p {
  color: var(--primary-gold);
  font-size: 1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary-red);
}

.carousel-btn-prev {
  left: 15px;
}

.carousel-btn-next {
  right: 15px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot:hover,
.carousel-dot.active {
  background: var(--primary-gold);
}

/* Responsive */
@media (max-width: 992px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

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

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

  .carousel-slide img {
    height: 60vh;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-black);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

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

  .section {
    padding: 50px 0;
  }

  .carousel-slide img {
    height: 50vh;
    max-height: 400px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

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

  .stat-item h3 {
    font-size: 2rem;
  }

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

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

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--primary-black);
  margin-top: 40px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-gold);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content li {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-update {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: var(--gray);
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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