/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4.5rem;
    background: transparent;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  
  .header-logo {
    width: 153px;
    height: 73px;
    object-fit: contain;
  }
  
  .menu-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    color: white;
    font-size: var(--font-size-small);
    cursor: pointer;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
  }
  
  .menu-icon {
    width: 34px;
    height: 34px;
    background-image: url('https://c.animaapp.com/mhphje9daebBjm/img/vuesax-linear-textalign-right.svg');
    background-size: 100% 100%;
  }
  
  .language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: var(--font-size-small);
    cursor: pointer;
  }
  
  /* Button Styles */
  .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid #122b37;
    color: #122b37;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background: rgba(18, 43, 55, 0.05);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    min-height: 895px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 757px;
    padding: 0 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: white;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    line-height: normal;
  }
  
  .hero-subtitle {
    font-size: var(--font-size-medium);
    font-weight: 500;
    color: white;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    line-height: normal;
  }
  
  /* Filter Section */
  .filter-section {
    padding: 5rem 0 3rem;
  }
  
  .filter-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .search-bar {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
  }
  
  .search-button {
    padding: 1rem 1.5rem;
    background: #122b37;
    border: 1px solid #122b37;
    color: white;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .search-button:hover {
    background: #1a3d4d;
  }
  
  .search-input {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 1.125rem 1rem;
    background: #f0f0f0;
    border: 0.5px solid #dfdfdf;
    min-width: 400px;
  }
  
  .search-input input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: var(--font-size-small);
    color: #616161;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    outline: none;
  }
  
  .search-input input::placeholder {
    color: #616161;
  }
  
  .filter-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  
  .filter-title {
    font-size: var(--font-size-medium);
    font-weight: 700;
    color: #122b37;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
  }
  
  .filter-dropdowns {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .filter-dropdown-wrapper {
    position: relative;
    min-width: 200px;
  }
  
  .filter-dropdown {
    width: 100%;
    padding: 1rem;
    padding-right: 2.5rem;
    background: #f7f7f7;
    border: 1px solid #eaeaea;
    color: #616161;
    font-size: var(--font-size-small);
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    border-radius: 0;
  }
  
  .filter-dropdown:hover {
    background: #eeeeee;
  }
  
  .filter-dropdown:focus {
    border-color: #122b37;
    background: #f0f0f0;
  }
  
  .filter-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
    transition: transform 0.3s ease;
  }
  
  .filter-dropdown:focus + .filter-arrow {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .filter-dropdown option {
    padding: 0.5rem;
    background: #ffffff;
    color: #616161;
  }
  
  .filter-dropdown option:checked {
    background: #f7f7f7;
    color: #122b37;
  }
  
  .project-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .project-card.filtered-out {
    display: none;
  }
  
  .no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: #616161;
    font-size: var(--font-size-small);
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
  }
  
  .no-results-message p {
    margin: 0;
  }
  
  /* Featured Project */
  .featured-project {
    padding: 3rem 0;
  }
  
  .featured-project .container-wide {
    width: 100%;
  }
  
  .project-card-large {
    position: relative;
    width: 100%;
    height: 741px;
    overflow: hidden;
  }
  
  .project-image-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
  }
  
  .project-content-large {
    display: flex;
    align-items: flex-end;
    gap: 3.5rem;
    width: 100%;
  }
  
  .project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
  }
  
  .project-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }
  
  .project-location {
    display: inline-flex;
    padding: 0.375rem 0.75rem;
    background: rgba(18, 43, 55, 0.5);
    backdrop-filter: blur(3.4px);
    color: white;
    font-size: var(--font-size-small);
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    line-height: 1.44;
  }
  
  .project-title-large {
    font-size: var(--font-size-medium);
    font-weight: 700;
    color: white;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    line-height: 1.08;
  }
  
  .project-description {
    font-size: var(--font-size-small);
    color: white;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    line-height: 1.89;
  }
  
  .project-description-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Projects Grid */
  .projects-grid {
    padding: 3rem 0;
  }
  
  .projects-grid .container-wide {
    width: 100%;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.25rem;
  }
  
  .project-card {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
  
  .project-image-wrapper {
    position: relative;
    width: 100%;
    height: 417px;
    overflow: hidden;
  }
  
  .project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .project-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(18, 43, 55, 0.5);
    backdrop-filter: blur(3.4px);
    color: white;
    font-size: var(--font-size-small);
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    line-height: 1.44;
  }
  
  .project-details {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
  
  .project-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
  }
  
  .project-title {
    font-size: var(--font-size-medium);
    font-weight: 700;
    color: #122b37;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    line-height: 1.08;
  }
  
  .project-desc {
    font-size: var(--font-size-small);
    color: #616161;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
    
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-title {
      font-size: var(--font-size-xl-tablet);
    }
    
    .hero-subtitle {
      font-size: var(--font-size-medium-tablet);
    }
    
    .filter-container {
      flex-direction: column;
      align-items: stretch;
    }
    
    .search-bar {
      flex-direction: column;
      align-items: stretch;
    }
    
    .search-input {
      min-width: auto;
    }
    
    .filter-controls {
      align-items: stretch;
    }
    
    .filter-dropdowns {
      flex-direction: column;
    }
    
    .filter-dropdown-wrapper {
      width: 100%;
      min-width: auto;
    }
    
    .grid-container {
      grid-template-columns: 1fr;
    }
    
    .project-content-large {
      flex-direction: column;
      align-items: flex-start;
    }
    
  }
  
  @media (max-width: 768px) {
    .header {
      padding: 1rem;
    }
    
    .header-left {
      gap: 1rem;
    }
    
    .btn-primary {
      padding: 0.75rem 1rem;
      font-size: var(--font-size-small-mobile);
    }
    
    .header-logo {
      width: 120px;
      height: auto;
    }
    
    .hero {
      min-height: 600px;
    }
    
    .hero-title {
      font-size: var(--font-size-xl-mobile);
    }
    
    .hero-subtitle {
      font-size: var(--font-size-small);
    }
    
    .filter-section {
      padding: 3rem 0 2rem;
    }
    
    .filter-dropdown-wrapper {
      width: 100%;
    }
    
    .filter-dropdown {
      font-size: var(--font-size-small-mobile);
      padding: 0.875rem;
      padding-right: 2.25rem;
    }
    
    .project-card-large {
      height: 500px;
    }
    
    .project-overlay {
      padding: 1.5rem;
    }
    
    .project-title-large {
      font-size: var(--font-size-medium-mobile);
    }
    
    .project-description {
      font-size: var(--font-size-small-mobile);
    }
    
    .project-image-wrapper {
      height: 300px;
    }
    
    .project-title {
      font-size: var(--font-size-medium-mobile);
    }
    
    .project-desc {
      font-size: var(--font-size-small-mobile);
    }
    
    .project-details {
      flex-direction: column;
      align-items: stretch;
    }
    
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: var(--font-size-xl-mobile);
    }
    
    .hero-subtitle {
      font-size: var(--font-size-small-mobile);
    }
    
    .filter-title {
      font-size: var(--font-size-medium-tablet);
    }
    
    .project-title-large {
      font-size: var(--font-size-medium-mobile);
    }
    
    .project-title {
      font-size: var(--font-size-medium-mobile);
    }
  }
  