@charset "UTF-8";
:root {
  --background: oklch(0.99 0.005 85);
  --foreground: oklch(0.15 0.01 85);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.15 0.01 85);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.15 0.01 85);
  --primary: oklch(0.65 0.15 35);
  --primary-foreground: oklch(0.99 0.005 85);
  --secondary: oklch(0.96 0.01 85);
  --secondary-foreground: oklch(0.15 0.01 85);
  --muted: oklch(0.96 0.01 85);
  --muted-foreground: oklch(0.45 0.01 85);
  --accent: oklch(0.75 0.12 25);
  --accent-foreground: oklch(0.99 0.005 85);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.98 0.01 85);
  --border: oklch(0.92 0.01 85);
  --input: oklch(0.92 0.01 85);
  --ring: oklch(0.65 0.15 35);
  --radius: 0rem;
}

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

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

.main {
  min-height: 100vh;
  padding-top: 5rem;
}

.breadcrumb {
  padding: 1rem 0;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .breadcrumb-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.breadcrumb-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '>';
  margin-left: 0.5rem;
  color: #313131;
}

.breadcrumb-list li a {
  color: #313131;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
  color: black;
}

.breadcrumb-list li:last-child {
  color: black;
  font-weight: 500;
}

.project-header {
  padding: 3rem 0;
  background: white;
}

.project-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.project-category {
  font-size: 0.75rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.project-location {
  font-size: 0.75rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.project-date {
  font-size: 0.75rem;
  color: #313131;
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.project-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .project-title {
    font-size: 3rem;
  }
}

.project-subtitle {
  font-size: 1.125rem;
  color: #313131;
  line-height: 1.7;
  max-width: 48rem;
}

.hero-image {
  padding: 2rem 0;
  background: white;
}

.image-container {
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.project-overview {
  padding: 4rem 0;
  background: #f9fafb;
}

.overview-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .overview-grid {
    -ms-grid-columns: 2fr 1fr;
        grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

.overview-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  padding-left: 1.5rem;
  border-left: 5px solid #ff6b35;
  position: relative;
  line-height: 1.4;
}

.overview-content h2:first-child {
  margin-top: 0;
}

.overview-content h2::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 5px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff6b35), to(#ff8c5a));
  background: linear-gradient(180deg, #ff6b35 0%, #ff8c5a 100%);
}

.overview-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}

.overview-content h3:first-child {
  margin-top: 0;
}

.overview-content h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ff6b35;
}

.overview-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1rem;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.overview-content h4:first-child {
  margin-top: 0;
}

.overview-content h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff6b35;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.overview-content p {
  color: #313131;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.overview-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: #f9fafb;
  border-left: 4px solid #ff6b35;
  border-radius: 0 0.5rem 0.5rem 0;
  position: relative;
  font-style: italic;
  color: #313131;
}

.overview-content blockquote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 3rem;
  color: #ff6b35;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.overview-content blockquote p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.overview-content blockquote p:last-child {
  margin-bottom: 0;
}

.overview-content blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #666;
  font-style: normal;
  text-align: right;
}

.overview-content blockquote cite::before {
  content: '— ';
}

.overview-content ul, .overview-content ol {
  margin: 1.25rem 0;
  padding-left: 2rem;
  color: #313131;
}

.overview-content ul li, .overview-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.overview-content ul {
  list-style-type: none;
}

.overview-content ul li {
  position: relative;
  padding-left: 1.5rem;
}

.overview-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #ff6b35;
  border-radius: 50%;
}

.overview-content ol {
  counter-reset: item;
}

.overview-content ol li {
  position: relative;
  padding-left: 0.5rem;
}

.overview-content ol li::marker {
  color: #ff6b35;
  font-weight: 600;
}

.overview-content a {
  color: #ff6b35;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.overview-content a:hover {
  border-bottom-color: #ff6b35;
}

.overview-content strong {
  color: black;
  font-weight: 600;
}

.overview-content em {
  font-style: italic;
  color: #313131;
}

.overview-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.overview-content figure {
  margin: 2rem 0;
}

.overview-content figure img {
  margin: 0;
}

.overview-content figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  font-style: italic;
}

.overview-content hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 2px solid #e5e7eb;
  position: relative;
}

.overview-content hr::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #ff6b35;
}

.overview-specs {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.overview-specs h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.spec-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

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

.spec-item .spec-label {
  color: #313131;
  font-size: 0.875rem;
}

.spec-item .spec-value {
  color: black;
  font-weight: 600;
  font-size: 0.875rem;
}

.design-features {
  padding: 4rem 0;
  background: white;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: black;
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  background: #f9fafb;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #f1f5f9;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.feature-item .feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.feature-item:hover .feature-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.feature-item .feature-content {
  padding: 1.5rem;
}

.feature-item .feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1rem;
}

.feature-item .feature-content p {
  color: #313131;
  line-height: 1.6;
}

.materials-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.materials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .materials-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.material-category {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.material-category:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.material-category h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.material-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.material-category ul li {
  color: #313131;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  padding-left: 1.5rem;
}

.material-category ul li::before {
  content: '•';
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.material-category ul li:last-child {
  border-bottom: none;
}

.gallery-section {
  padding: 4rem 0;
  background: white;
}

.gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.gallery-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 1rem;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.gallery-item .gallery-overlay .gallery-caption {
  color: white;
  font-weight: 500;
}

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

.customer-voice {
  padding: 4rem 0;
  background: #f9fafb;
}

.voice-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .voice-content {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
  }
}

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

.voice-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .voice-image img {
    width: 250px;
    height: 250px;
  }
}

.voice-text blockquote {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #ff6b35;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.voice-text blockquote p {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.voice-text .voice-author {
  margin-top: 1rem;
}

.voice-text .voice-author strong {
  color: black;
  font-weight: 600;
  margin-right: 0.5rem;
}

.voice-text .voice-author span {
  color: #313131;
  font-size: 0.875rem;
}

.related-projects {
  padding: 4rem 0;
  background: white;
}

.projects-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  background: #f9fafb;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.project-card:hover {
  background: #f1f5f9;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.project-card .project-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-card .project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.project-card:hover .project-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.project-card .project-content {
  padding: 1.5rem;
}

.project-card .project-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.5rem;
}

.project-card .project-content p {
  color: #313131;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-card .project-content .project-link {
  color: black;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.project-card .project-content .project-link:hover {
  color: #ff6b35;
}

.cta-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1rem;
  color: #313131;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background: #ff6b35;
  color: white;
}

.cta-button.primary {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.cta-button.primary:hover {
  background: white;
  color: #ff6b35;
}

.cta-button.secondary {
  background: transparent;
  color: #ff6b35;
  border-color: #ff6b35;
}

.cta-button.secondary:hover {
  background: #ff6b35;
  color: white;
}

.contact-section {
  background: white;
}

.contact-form-section {
  padding: 4rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .contact-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.contact-item.center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: #ff6b35;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-icon.green {
  background: #10b981;
}

.contact-icon i {
  width: auto;
  height: auto;
  font-size: 1.6rem;
  color: white;
}

.contact-info .contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
}

.contact-info .contact-description {
  font-size: 0.875rem;
  color: #313131;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lightbox.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lightbox-image-container {
  position: relative;
  max-width: 100%;
  max-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  color: white;
  font-size: 1rem;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 107, 53, 0.9);
  border-color: #ff6b35;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.lightbox-close i {
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 107, 53, 0.9);
  border-color: #ff6b35;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}

.lightbox-prev i,
.lightbox-next i {
  pointer-events: none;
}

.lightbox-prev {
  left: 2rem;
}

@media (max-width: 767px) {
  .lightbox-prev {
    left: 1rem;
  }
}

.lightbox-next {
  right: 2rem;
}

@media (max-width: 767px) {
  .lightbox-next {
    right: 1rem;
  }
}

.lightbox-trigger {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.lightbox-trigger:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 767px) {
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  .lightbox-image-container {
    max-height: 70vh;
  }
  .lightbox-image-container img {
    max-height: 70vh;
  }
  .lightbox-close {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  .lightbox-caption {
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.5rem;
}

.contact-hours {
  font-size: 0.875rem;
  color: #313131;
}

.contact-line {
  font-weight: 700;
  color: black;
}

.contact-qr {
  width: 4rem;
  height: 4rem;
  background: #e5e7eb;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-qr i {
  width: 2rem;
  height: 2rem;
  color: #313131;
}

.footer {
  background: #111827;
  color: white;
  padding: 4rem 0;
}

.footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section .footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section .footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section .footer-description .footer-company {
  text-decoration: underline;
}

.footer-section .footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-section .footer-address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section .footer-address p {
  margin-bottom: 0.25rem;
}

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

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

.footer-section .footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-links li a:hover {
  color: white;
}

.footer-section .footer-social .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-social .social-link:hover {
  color: white;
}

.footer-section .footer-social .social-link .social-icon {
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .project-title {
    font-size: 2rem;
  }
  .overview-grid {
    gap: 2rem;
  }
  .features-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .materials-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .gallery-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .voice-content {
    gap: 2rem;
  }
  .projects-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

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

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

.fade-in {
  -webkit-animation: fadeIn 0.6s ease-out;
          animation: fadeIn 0.6s ease-out;
}

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

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

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\\:block {
    display: block;
  }
  .md\\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\\:hidden {
    display: none;
  }
}
/*# sourceMappingURL=works-single.css.map */