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

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: "TikTok Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: #09B2F1;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d4ed8;
}

/* Layout */
.main {
  min-height: calc(100vh - 200px);
  padding: 1rem 0;
}

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

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 2rem;
  width: auto;
  transition: opacity 0.2s ease;
}

.nav__logo:hover .nav__logo-img {
  opacity: 0.8;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__link {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  transition: color 0.2s ease;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: 14px;
}

.nav__link:hover {
  color: #111;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  margin-bottom: 4rem;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Projects Section */
.projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.projects-title {
  font-size: 2rem;
  color: #111;
}

/* Filter Controls */
.filter-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #6b7280;
  transition: all 0.2s ease;
  color: #333;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}

.filter-tag:hover {
  border-color: #9ca3af;
  color: #374151;
}

.filter-tag.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.filter-clear {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #d1d5db;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}

.filter-clear:hover {
  border-color: #9ca3af;
  color: #374151;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.2rem;
  margin-bottom: 4rem;
}

.project-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 400px;
}

.project-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.project-card__link:hover {
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-card:hover .project-card__title {
  color: #60a5fa;
}

.project-card__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

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

.project-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #10b981;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
}

.project-card__content {
  position: relative;
  z-index: 2;
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  min-height: 100%;
}

.project-card__title {
  font-size: 0.85rem;
  margin-bottom: 0rem;
  color: #000;
  font-weight: 300;
  background: rgba(255, 255, 255, 1);
  padding: 0.5rem 0.75rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;

}

.project-card__description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.5;
  display: none;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0rem;
  display: none;
}

.project-tag {
  background: rgba(255, 255, 255, 1);
  color: #333;
  padding: 0.35rem 0.75rem 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
  border: 1px solid #ddd;
}
.project-tag:hover {
  background: #111;
  color: #eee;
}


.project-card__price {
  color: #10b981;
  font-weight: 600;
  font-size: 1.125rem;
  background: rgba(16, 185, 129, 0.2);
  padding: 0.5rem 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display:none;
}

/* Project Detail */
.project-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.project-header {
  margin-bottom: 4rem;
  padding-top: 1rem;
  position: relative;
  overflow: hidden;
}



.project-meta {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.project-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
  line-height: 1.1;
}

.project-sale {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.sale-badge {
  color: green;
  padding: 0.25rem .75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid lightgreen;
  font-family: "IBM Plex Mono", monospace;
  display: none;
}

.sale-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.5rem 1rem;
  border: 2px solid rgba(16, 185, 129, 0.2);
  display: none;

}

.project-date {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;

}


.project-featured-image {
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.project-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.project-content {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.project-description {
  grid-column: 1;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #374151;
  min-width: 0; /* Allow grid item to shrink below content size */
}

.project-description h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: #111;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

.project-description h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: #111;
}

.project-description p {
  margin-bottom: 1.5rem;
}

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

.project-description li {
  margin-bottom: 0.5rem;
}

.project-description img {max-width: 100%;}

.project-sidebar {
  grid-column: 2;
  position: sticky;
  top: 5rem;
}

.project-tags {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.project-tags h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-tags h3::before {
  content: '🏷️';
  font-size: 1.2em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-gallery {
  margin: 3rem 0;
  background: #fff;

}

.project-gallery h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  display: none;
}


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

.gallery-item {
  display: flex;
  flex-direction: column;
}

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

.gallery-caption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: left;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  line-height: 1.4;
}

.project-videos {
  margin: 3rem 0;
  background: #fff;

}





.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin: 1.5rem 0;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  font-style: italic;
}

.project-links {
  margin: 2rem 0;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.project-links h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-links h3::before {
  content: '🔗';
  font-size: 1.2em;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #f8fafc;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #374151;
  text-decoration: none;
}

.project-link:hover {
  background: #111;
  color: #eee;
}

.project-link::before {
  content: '→';
  font-weight: bold;
  color: #6b7280;
}

.sale-link {
  background: lightgreen;
  color: darkgreen;
  border-color: #10b981;
}

.sale-link:hover {
  background: darkgreen;
  color: #fff;
}

.sale-link::before {
  content: '→';
  color: green;
}

.project-technologies {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.project-technologies h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-technologies h3::before {
  content: '⚙️';
  font-size: 1.2em;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tech-tag {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: linear-gradient(135deg, #bfdbfe, #93c5fd);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.project-client {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.project-client h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-client h3::before {
  content: '👤';
  font-size: 1.2em;
}

.project-client p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  margin: 0;
}

.project-navigation {
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #111;
  background: #e5e7eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Enhanced Project Navigation */
.project-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.nav-previous,
.nav-center,
.nav-next {
  display: flex;
  align-items: center;
}

.nav-center {
  justify-content: center;
}

.nav-next {
  justify-content: flex-end;
}

.nav-link--previous {
  flex-direction: row;
}

.nav-link--next {
  flex-direction: row;
}

.nav-link--center {
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border-color: #e2e8f0;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: .75rem;
}

.nav-link--center:hover {
  background: #e2e8f0;
}

.nav-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-link--next .nav-content {
  align-items: flex-end;
}

.nav-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
}

.nav-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.2;
}

.nav-arrow {
  font-size: 1.25rem;
  color: #6b7280;
  transition: color 0.2s ease;
}

.nav-link:hover .nav-arrow {
  color: #2563eb;
}



/* Notes */
.notes-header {
  text-align: center;
  padding: 2rem 0;
}

.notes-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.notes-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
}

.notes-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.note-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.note-card:last-child {
  border-bottom: none;
}

.note-card__image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 0.375rem;
}

.note-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.note-card__content {
  flex-grow: 1;
}

.note-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.note-card__title a {
  color: #111;
  text-decoration: none;
}

.note-card__title a:hover {
  color: #2563eb;
}

.note-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.note-date {
  color: #999;
  font-size: 0.75rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;

}

.note-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.note-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.note-card__excerpt {
  color: #6b7280;
  line-height: 1.6;
}

/* Note Detail */
.note-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;

}

.note-detail hr {color: #eee; border-color: #eee; opacity: 0.3;}

.note-detail p, .note-detail ul, .project-description p, .project-description ul {  color: #6b7280;}

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

.note-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.note-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.note-featured-image {
  margin-bottom: 2rem;
}

.note-hero-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.note-content {
  margin-bottom: 3rem;
  line-height: 1.8;
}

.note-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.note-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.note-content p {
  margin-bottom: 1.5rem;
}

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

.note-content li {
  margin-bottom: 0.5rem;
}

.note-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer__content {
  text-align: left;
  color: #6b7280;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}




/* Responsive Design */
@media (max-width: 1024px) {
  .project-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-description {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
  }

  .project-sidebar {
    position: static;
    order: -1; /* Move sidebar above content on tablet */
    grid-column: 1;
  }

  .project-detail {
    max-width: 800px;
  }
}

@media (max-width: 900px) {
  .project-detail {
    max-width: 100%;
    padding: 0 1rem;
  }

  .project-header {
    padding: 2rem;
  }

  .project-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav__links {
    gap: 1.5rem;
  }

  .nav__logo-img {
    height: 1.75rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-controls {
    width: 100%;
    justify-content: flex-start;
  }

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

  .note-card {
    flex-direction: column;
  }

  .note-card__image {
    width: 100%;
    height: 200px;
  }

  .note-meta {
    justify-content: flex-start;
  }

  .project-title,
  .note-title {
    font-size: 2rem;
  }

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

  .link-list {
    flex-direction: column;
  }

  .project-header {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .project-title {
    font-size: 2.5rem;
  }

  .project-sale {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .project-content {
    display: block;
  }

  .project-description {
    grid-column: unset;
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: block;
    margin-bottom: 2rem;
  }

  .project-sidebar {
    grid-column: unset;
    position: static;
    margin-bottom: 2rem;
    display: block;
  }

  .project-tags,
  .project-links,
  .project-technologies,
  .project-client {
    margin-bottom: 1rem;
  }
}

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

  .hero {
    padding: 2rem 0;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .project-card__content {
    padding: 0.5rem;
  }

  .filter-tags {
    justify-content: flex-start;
  }

  .filter-tag {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  /* Mobile-specific project detail improvements */
  .project-detail {
    padding: 0 1rem;
  }

  .project-header {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  .project-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .project-content {
    display: block;
  }

  .project-description {
    grid-column: unset;
    width: 100%;
    max-width: 100%;
    padding: 0;
    font-size: 1rem;
    display: block;
    margin-bottom: 2rem;
  }

  .project-sidebar {
    grid-column: unset;
    position: static;
    display: block;
  }

  .project-sale {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .sale-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .sale-price {
    font-size: 1.25rem;
  }

  .project-sidebar {
    margin-bottom: 1.5rem;
  }

  .project-tags,
  .project-links,
  .project-technologies,
  .project-client {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .project-tags h3,
  .project-links h3,
  .project-technologies h3,
  .project-client h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .project-link {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .tech-tag {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .gallery-grid {
    gap: 1.5rem;
  }

  .project-gallery,
  .project-videos {
    padding: 1rem;
    margin: 2rem 0;
  }

  .project-gallery h3,
  .project-videos h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .project-navigation {
    margin-top: 2rem;
    padding: 1.5rem 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .nav-previous,
  .nav-next {
    justify-content: center;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .nav-title {
    font-size: 0.8rem;
  }

  .nav-label {
    font-size: 0.7rem;
  }

  /* About page mobile responsiveness */
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-approach,
  .about-services,
  .about-contact {
    padding: 2rem;
  }

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

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

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* About Page */
.about-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-header {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 1rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
  line-height: 1.1;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  margin-bottom: 4rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.about-approach {
  margin-bottom: 4rem;
  padding: 3rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-approach h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #111;
  text-align: center;
}

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

.approach-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.approach-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.approach-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.approach-item p {
  color: #6b7280;
  line-height: 1.6;
}

.about-services {
  margin-bottom: 4rem;
  padding: 3rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-services h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #111;
  text-align: center;
}

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

.service-category {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

.service-category h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-category h3::before {
  content: '→';
  color: #3b82f6;
  font-weight: bold;
}

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

.service-category li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 500;
}

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

.service-category li::before {
  content: '•';
  color: #3b82f6;
  font-weight: bold;
  margin-right: 0.75rem;
}

.about-contact {
  padding: 3rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.about-contact h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111;
}

.about-contact p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-item {
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #09B2F1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #1d4ed8;
}

.contact-item span {
  color: #6b7280;
  font-weight: 500;
}

/* Tag Pages */
.tag-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tag-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.tag-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.tag-count {
  color: #6b7280;
  font-size: 1.125rem;
}

.tag-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.tag-item {
  padding: 2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.tag-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tag-item__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.tag-item__title a {
  color: #111;
  text-decoration: none;
}

.tag-item__title a:hover {
  color: #2563eb;
}

.tag-item__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tag-item__date {
  color: #6b7280;
  font-size: 0.875rem;
}

.tag-item__type {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.tag-item__description {
  color: #6b7280;
  line-height: 1.6;
}

.tag-empty {
  text-align: center;
  color: #6b7280;
  font-size: 1.125rem;
  padding: 3rem 0;
}

.tag-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
