/* CSS Variables and Reset */
:root {
  --primary-red: #b23a48;
  --primary-red-dark: #8c2d38;
  --primary-red-light: #d84a5a;
  --primary-yellow: #ffb700;
  --spaced-out: rgb(140, 80, 253);
  --text-dark: #282e35;
  --text-light: #f2f8fa;
  --text-gray: #6c757d;
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --border-color: #e9ecef;
  --border-color-alt: #dadcdf;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --header-height: 4.5rem;
  --nav-shadow: none;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

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

body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-alt);
  transition: var(--transition);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

section {
  width: 100%;
}

footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
}

/* Header and Navigation */
.main-header {
  background: var(--background);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container h1 {
  color: var(--primary-red);
  font-size: 1.8rem;
  margin: 0;
}

.motto {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
  background: rgba(178, 58, 72, 0.1);
}

.nav-links a.design {
  color: var(--primary-yellow);
  background: rgba(240, 193, 75, 0.1);
}

/* Hero Section */
.hero {
  padding: 8rem 2rem 2rem;
  text-align: center;
  position: relative;
  color: var(--text-light);
  background-size: cover;
  background-position: 75% 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 7rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  background: var(--background);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* About Styles */

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.about-content h1 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text h3 {
  color: var(--primary-red);
  margin-top: 2rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background-image: url("../images/workshop-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
}

.image-placeholder {
  background: var(--background-alt);
  border-radius: 8px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.image-placeholder img {
  width: 100%;
}

.values-section {
  margin: 4rem 0 0;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 70%;
}

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

.value-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  border: solid 1px var(--border-color-alt);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.team-section {
  margin: 4rem 0;
  text-align: center;
}

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

.team-member {
  background: var(--background);
  padding: 2rem;
  border-radius: 16px;
  border: solid 1px var(--border-color-alt);
  transition: var(--transition);
  max-width: 50vw;
  box-shadow: var(--shadow-sm);
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  border-radius: 50%;
  width: 30%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--text-dark);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* History Page Styles */
.history-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--background-alt), #fff);
  text-align: center;
  position: relative;
}

.history-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.history-hero h2 {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.timeline-section {
  padding: 4rem 2rem;
  background: var(--background);
  position: relative;
}

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

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: var(--primary-red);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  padding: 1rem;
  position: relative;
  width: 50%;
  margin-bottom: 4rem;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-red);
  border: 4px solid var(--background);
  border-radius: 50%;
  top: 20px;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
  padding-right: 3rem;
}

.timeline-item.right {
  left: 50%;
  padding-left: 3rem;
}

.timeline-item.left::after {
  right: -10px;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  padding: 2rem;
  background: var(--background);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-red);
  color: var(--text-light);
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-content h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.timeline-image {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.timeline-image .image-placeholder {
  aspect-ratio: 16/9;
  background: var(--background-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--text-dark);
}

.history-cta {
  padding: 4rem 2rem;
  background: var(--background-alt);
  text-align: center;
}

/* Filter Section */
.gallery-filters {
  position: sticky;
  top: calc(var(--nav-height) * 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  z-index: 9999;
  background: var(--background);
  box-shadow: var(--nav-shadow);
  border-radius: 0 0 24px 24px;
}

.gallery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.filter-btn {
  padding: 8px 16px;
  border: none;
  background: rgba(178, 58, 72, 0.1);
  color: var(--primary-red);
  text-align: center;
  font-size: 0.9rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: var(--primary-red-light);
  color: white;
}

.image-big {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 0.3s ease;
}

.image-big img {
  border-radius: 8px;
  max-width: 80%;
  min-width: 50%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  background: var(--background);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Recent Work Section */
.recent-work {
  padding: 4rem 2rem;
  background: var(--background-alt);
}

.recent-work h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.project-placeholder {
  background: var(--background);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--text-dark);
}


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

.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8) 40%);
  color: var(--text-light);
  transform: translateY(100%);
  transition: var(--transition);
}

.project-item:hover .project-overlay {
  transform: translateY(0);
}

.project-item:hover .project-image {
  transform: scale(1.1);
}

.project-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.project-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Footer */

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section .motto {
  color: var(--text-gray);
}

.footer-section h3,
.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

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

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

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-red-light);
}

.contact-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary-red);
  border-radius: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--spaced-out);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

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

/* Responsive Design */
@media (max-width: 1005px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2rem 1rem 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 8rem 1rem 4rem;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

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

  .project-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  }

  .hero h2,
  .history-hero h2,
  .gallery-hero h2 {
    font-size: 2.5rem;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2rem;
  }

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

  .about-image {
    order: -1;
  }

  .image-placeholder {
    aspect-ratio: 16/9;
    width: max(100%, 400px);
  }

  .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 5rem;
    padding-right: 1rem;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 21px;
  }

  .timeline-item.left {
    padding-right: 1rem;
  }

  .materials-hero h2 {
    font-size: 2.5rem;
  }

  .materials-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

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

  .material-content {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .gallery-content {
    padding: 1.5rem;
  }

  .policy-hero h2 {
    font-size: 2.5rem;
  }

  .policy-content {
    padding: 2rem 1rem;
  }

  .policy-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .policy-section h3 {
    font-size: 1.5rem;
  }

  .policy-details h4 {
    font-size: 1.1rem;
  }
}

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

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

@keyframes timelineLine {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.feature-card,
.project-placeholder,
.value-card,
.team-member {
  animation: fadeIn 0.6s ease-out forwards;
}

.timeline-item {
  opacity: 0;
  animation: timelineItemFade 0.6s ease-out forwards;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.8s;
}

.timeline-item:nth-child(6) {
  animation-delay: 1s;
}

.timeline::after {
  animation: timelineLine 2s ease-out forwards;
}

/* Materials Page Styles */
.materials-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--background-alt), #fff);
  text-align: center;
  position: relative;
}

.materials-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.materials-hero h2 {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.materials-intro {
  padding: 4rem 2rem;
  background: var(--background);
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h3 {
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  opacity: 0.9;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.material-card {
  background: var(--background);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.material-card:hover {
  transform: translateY(-5px);
}

.material-image {
  position: relative;
  overflow: hidden;
}

.material-image .image-placeholder {
  aspect-ratio: 16/9;
  background: var(--background-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--text-dark);
}

.material-content {
  padding: 2rem;
}

.material-content h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.material-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.9;
}

.material-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.material-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.material-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

.materials-cta {
  padding: 4rem 2rem;
  background: var(--background-alt);
  text-align: center;
  margin-top: 4rem;
}

/* Add Materials Animations */
@keyframes materialCardFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.material-card {
  opacity: 0;
  animation: materialCardFade 0.6s ease-out forwards;
}

.material-card:nth-child(2) {
  animation-delay: 0.2s;
}

.material-card:nth-child(3) {
  animation-delay: 0.4s;
}

.material-card:nth-child(4) {
  animation-delay: 0.6s;
}

.material-card:nth-child(5) {
  animation-delay: 0.8s;
}

.material-card:nth-child(6) {
  animation-delay: 1s;
}

/* Materials Page Styles */
.materials-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--background-alt), #fff);
  text-align: center;
  position: relative;
}

.materials-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.materials-hero h2 {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.materials-intro {
  padding: 4rem 2rem;
  background: var(--background);
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h3 {
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  opacity: 0.9;
}

.gallery-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--background-alt), #fff);
  text-align: center;
  position: relative;
}

.gallery-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-hero h2 {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1%;
  width: 70%;
  margin: 0 auto;
}

.gallery-card {
  background: var(--background);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: none;
  width: minmax(350px, 1fr);
  max-height: minmax(550px, 43vw);
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card.show {
  display: block;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-image .image-placeholder {
  aspect-ratio: 16/9;
  background: var(--background-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--text-dark);
}

.gallery-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.gallery-content h3 {
  color: var(--primary-red);
  font-size: 1.5rem;
}

.gallery-content p {
  margin-bottom: 1.5rem;

  color: var(--text-dark);
  opacity: 0.9;
}

.gallery-content h5 {
  position: absolute;
  padding: 0.5rem 0;
  bottom: 0;
  opacity: 0.7;
}

.gallery-cta {
  padding: 4rem 2rem;
  background: var(--background-alt);
  text-align: center;
  margin-top: 4rem;
}

/* Add gallerys Animations */
@keyframes galleryCardFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-card {
  opacity: 0;
  animation: galleryCardFade 0.6s ease-out forwards;
}

/* Sales Policy Page Styles */
.policy-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--background-alt), #fff);
  text-align: center;
  position: relative;
}

.policy-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-hero h2 {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.policy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--background);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.policy-section:hover {
  transform: translateY(-5px);
}

.policy-section h3 {
  color: var(--primary-red);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.policy-details {
  padding: 1rem 0;
}

.policy-details h4 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem;
}

.policy-details h4:first-child {
  margin-top: 0;
}

.policy-details p {
  color: var(--text-dark);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.policy-list {
  list-style: none;
  margin: 1rem 0;
}

.policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

.policy-cta {
  padding: 4rem 2rem;
  background: var(--background-alt);
  text-align: center;
  margin-top: 4rem;
}

/* Policy Page Animations */
@keyframes policySectionFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-section {
  opacity: 0;
  animation: policySectionFade 0.6s ease-out forwards;
}

.policy-section:nth-child(2) {
  animation-delay: 0.2s;
}

.policy-section:nth-child(3) {
  animation-delay: 0.4s;
}

.policy-section:nth-child(4) {
  animation-delay: 0.6s;
}

.policy-section:nth-child(5) {
  animation-delay: 0.8s;
}

.policy-section:nth-child(6) {
  animation-delay: 1s;
}

/* Recent Work Section */
.recent-work {
  padding: 4rem 2rem;
  background: var(--background-alt);
}

.recent-work h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-red);
}


/* CTA */
.cta-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-red);
  color: var(--background);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
  font-weight: 600;
}

.cta-button:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content > * {
  margin-bottom: 0.5rem;
}

.cta-content h3 {
  color: var(--primary-red);
  font-size: 2rem;
}

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

.feature-card,
.project-item {
  animation: fadeIn 0.6s ease-out forwards;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

.project-item:nth-child(2) {
  animation-delay: 0.2s;
}

.project-item:nth-child(3) {
  animation-delay: 0.4s;
}
