/* Force header to always be visible */
header.header {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
}

header.header.transparent:not(.filled) {
    background-color: #1a1a1a !important;
}

/* Our Specialization Block */
.specialization-block {
    padding: 120px 0;
    background-color: #1a1a1a;
}

@media (max-width: 1024px) {
    .specialization-block {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .specialization-block {
        padding: 50px 0;
    }
}

.specialization-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 96px;
}

.specialization-header h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.specialization-toggle {
    display: flex;
    gap: 32px;
}

.specialization-toggle .toggle-btn {
    padding: 0;
    background: transparent;
    border: none;
    color: #666;
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.specialization-toggle .toggle-btn.active {
    color: #c8ff00;
}

.specialization-toggle .toggle-btn:hover:not(.active) {
    color: #999;
}

.specialization-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.specialization-grid.active {
    display: grid;
}

.spec-tile {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: transparent;
    border: 1px solid #252525;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 140px;
}

.spec-tile:hover {
    background: #c8ff00;
    border-color: #c8ff00;
}

.spec-tile:hover .spec-num,
.spec-tile:hover .spec-title {
    color: #000;
}

.spec-num {
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #c8ff00;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.spec-title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-left: 8px;
    transition: color 0.3s ease;
}

@media (max-width: 1024px) {
    .specialization-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

@media (max-width: 600px) {
    .specialization-header h2 {
        font-size: 36px;
    }

    .specialization-toggle .toggle-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

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

    .spec-tile {
        padding: 20px;
        min-height: 120px;
    }

    .spec-title {
        font-size: 16px;
    }
}

/* Our Mission Block */
.mission-block {
    padding: 120px 0;
    background-color: #fff;
}

@media (max-width: 1024px) {
    .mission-block {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .mission-block {
        padding: 50px 0;
    }
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 96px;
    gap: 40px;
}

.mission-header h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #000;
    margin: 0;
    flex-shrink: 0;
}

.mission-header .mission-description {
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    max-width: 400px;
    margin: 0;
    text-align: right;
}

.mission-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.mission-item {
    padding: 0;
}

.mission-icon {
    position: relative;
    margin-bottom: 32px;
    width: 80px;
    height: 80px;
}

.mission-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #c8ff00;
    z-index: 0;
}

/* 1st icon - bottom left */
.mission-item:nth-child(1) .mission-icon::before {
    left: 0;
    bottom: 0;
}

/* 2nd icon - top left */
.mission-item:nth-child(2) .mission-icon::before {
    left: 0;
    top: 0;
}

/* 3rd icon - bottom right */
.mission-item:nth-child(3) .mission-icon::before {
    right: 0;
    bottom: 0;
}

/* 4th icon - top left */
.mission-item:nth-child(4) .mission-icon::before {
    left: 0;
    top: 0;
}

.mission-icon img {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.mission-item h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin: 0 0 24px 0;
}

.mission-item p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

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

    .mission-header {
        flex-direction: column;
    }

    .mission-header .mission-description {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .mission-columns {
        grid-template-columns: 1fr;
    }

    .mission-header h2 {
        font-size: 36px;
    }

    .mission-header .mission-description {
        font-size: 18px;
    }
}

/* About Page Hero */
.hero-about {
    padding: 160px 0 0;
    background-color: #1a1a1a;
    text-align: center;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

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

.hero-about h1 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 24px 0;
}

.hero-about .hero-subtitle {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #888;
    margin: 0;
}

.hero-about #globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 48px;
    }

    .hero-about .hero-subtitle {
        font-size: 18px;
    }
}

/* Numbers Block */
.numbers-block {
    padding-top: 120px !important;
}

.numbered-boxes-wrap .single-box h2,
.numbered-boxes-wrap .single-box span {
    font-family: "Power Grotesk", sans-serif;
}

/* Project Detail Page */
.page-template-case-study {
    background-color: #fff;
}

.page-template-case-study .page-title-block {
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 60px;
}

.page-template-case-study .title-block-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.page-template-case-study .title-block-wrap .lh-side h1 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    color: #1d1d1d;
    margin: 0;
}

.page-template-case-study .title-block-wrap .rh-side {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.page-template-case-study .project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-template-case-study .project-meta-item .meta-label {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #686868;
    margin: 0;
}

.page-template-case-study .project-meta-item .meta-value {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1d1d1d;
    margin: 0;
}

.page-template-case-study .project-meta-item .meta-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-template-case-study .project-meta-item .meta-links a {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1d1d1d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-template-case-study .project-meta-item .meta-links a:hover {
    color: #686868;
}

.page-template-case-study .back-btn-wrapper {
    margin-bottom: 40px;
}

.page-template-case-study .back-button {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    color: #1d1d1d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-template-case-study .back-button::before {
    content: '←';
}

.page-template-case-study .back-button:hover {
    color: #686868;
}

.page-template-case-study .featured-image {
    margin-top: 40px;
}

.page-template-case-study .featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-template-case-study .texts-block {
    padding: 80px 0;
    background-color: #fff;
}

.page-template-case-study .texts-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.page-template-case-study .texts-wrapper .left-side-content h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1d1d1d;
    margin: 0;
}

.page-template-case-study .texts-wrapper .right-side-content {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1d1d1d;
}

.page-template-case-study .texts-wrapper .right-side-content p {
    margin: 0 0 20px 0;
}

.page-template-case-study .texts-wrapper .right-side-content p:last-child {
    margin-bottom: 0;
}

.page-template-case-study .content-wrapper.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.page-template-case-study .related-projects-block {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-template-case-study .related-projects-block h2 {
    font-family: "Power Grotesk", sans-serif;
    color: #fff;
}

.page-template-case-study .related-projects-block .title-buttons-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.page-template-case-study .related-projects-block .link-arrow-right {
    font-family: "Power Grotesk", sans-serif;
    color: #fff;
    text-decoration: none;
}

.page-template-case-study .related-projects-block .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.page-template-case-study .related-projects-block .grid-card {
    background: #222;
    overflow: hidden;
}

.page-template-case-study .related-projects-block .grid-card a {
    text-decoration: none;
    display: block;
}

.page-template-case-study .related-projects-block .grid-card .image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.page-template-case-study .related-projects-block .grid-card .texts {
    padding: 24px;
}

.page-template-case-study .related-projects-block .grid-card .simple-text {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #c8ff00;
    display: block;
    margin-bottom: 12px;
}

.page-template-case-study .related-projects-block .grid-card .title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 8px 0;
}

.page-template-case-study .related-projects-block .grid-card .description {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0;
}

@media (max-width: 1024px) {
    .page-template-case-study .title-block-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-template-case-study .title-block-wrap .rh-side {
        flex-wrap: wrap;
        gap: 30px;
    }

    .page-template-case-study .texts-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-template-case-study .content-wrapper.two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-template-case-study .title-block-wrap .lh-side h1 {
        font-size: 32px;
    }

    .page-template-case-study .related-projects-block .grid-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Services Index Page (marketing/, services/) */
.page-template-services-index {
    background-color: #1a1a1a;
}

.hero-services-index {
    padding: 160px 0 80px;
    background-color: #1a1a1a;
}

.hero-services-index .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-services-index .text-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 60px;
}

.hero-services-index .title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.hero-services-index .links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
}

.hero-services-index .link-wrapper .link {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.hero-services-index .link-wrapper .link:hover {
    color: #c8ff00;
}

.services-list-index {
    padding: 60px 0 100px;
    background-color: #1a1a1a;
}

.services-list-index .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-list-index .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background: transparent;
    border: 1px solid #333;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 220px;
}

.services-list-index .service-card:hover {
    background: #c8ff00;
    border-color: #c8ff00;
}

.services-list-index .service-card:hover .service-title,
.services-list-index .service-card:hover .service-description {
    color: #000;
}

.services-list-index .service-card:hover .service-arrow svg path {
    stroke: #000;
}

.services-list-index .service-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-list-index .service-title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.services-list-index .service-description {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    color: #888;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.services-list-index .service-arrow {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.services-list-index .service-arrow svg {
    width: 24px;
    height: 24px;
}

.services-list-index .service-arrow svg path {
    stroke: #fff;
    transition: stroke 0.3s ease;
}

/* Services Index Contact Form */
.page-template-services-index .customizable-form {
    background-color: #fff;
    padding: 100px 0;
}

.page-template-services-index .customizable-form .title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #1d1d1d;
}

.page-template-services-index .customizable-form .content-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.page-template-services-index .customizable-form .lh-side {
    max-width: 500px;
}

.page-template-services-index .customizable-form .rh-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-template-services-index .customizable-form .rh-content svg {
    width: 100%;
    max-width: 430px;
    height: auto;
}

@media (max-width: 1024px) {
    .hero-services-index .text-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-services-index .title {
        font-size: 48px;
    }

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

    .page-template-services-index .customizable-form .content-holder {
        grid-template-columns: 1fr;
    }

    .page-template-services-index .customizable-form .rh-side {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-services-index {
        padding: 120px 0 60px;
    }

    .hero-services-index .title {
        font-size: 36px;
    }

    .hero-services-index .link-wrapper .link {
        font-size: 16px;
    }

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

    .services-list-index .service-card {
        min-height: 180px;
        padding: 24px;
    }

    .services-list-index .service-title {
        font-size: 22px;
    }

    .page-template-services-index .customizable-form .title {
        font-size: 32px;
    }
}

/* Get in Touch Page - Offices Block */
.offices-block {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.offices-block h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 60px 0;
}

.offices-block .offices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.offices-block .office-region h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #c8ff00;
    margin: 0 0 20px 0;
}

.offices-block .office-region ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offices-block .office-region li {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    color: #888;
    margin-bottom: 12px;
}

@media (max-width: 1200px) {
    .offices-block .offices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .offices-block h2 {
        font-size: 32px;
    }

    .offices-block .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .offices-block .offices-grid {
        grid-template-columns: 1fr;
    }
}