:root {
    --navbar-height: 88px;
}

.app-navbar {
    min-height: var(--navbar-height);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.app-navbar .navbar-logo {
    height: 52px;
    width: auto;
}

.site-content {
    padding-top: var(--navbar-height);
}

.banner {
    overflow: hidden;
    background-image: none;
}

.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner::before {
    z-index: 1;
}

.banner-content {
    z-index: 2;
}

.cookie-consent {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1080;
    width: min(100% - 2.5rem, 420px);
    padding: 1rem 1rem 0.95rem;
    border-radius: 18px;
    background: rgba(19, 29, 39, 0.96);
    color: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-consent-body {
    padding-right: 2rem;
}

.cookie-consent-title {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.cookie-consent-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
}

.cookie-consent-button {
    margin-top: 0.9rem;
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font-weight: 700;
    color: #152230;
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
}

.cookie-consent-button:hover,
.cookie-consent-button:focus-visible {
    color: #0f1720;
    background: linear-gradient(135deg, #ffffff 0%, #cfe0ff 100%);
}

.cookie-consent-close {
    position: absolute;
    top: 0.55rem;
    right: 0.7rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.6rem;
    line-height: 1;
}

.cookie-consent-close:hover,
.cookie-consent-close:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 576px) {
    .cookie-consent {
        right: 0.75rem;
        bottom: 0.75rem;
        width: calc(100% - 1.5rem);
        border-radius: 16px;
    }

    .cookie-consent-body {
        padding-right: 2.1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 80px;
    }

    .app-navbar {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .app-navbar .navbar-logo {
        height: 46px;
    }
}

.about-page {
    padding: 4rem 0 2.8rem;
    background: #ffffff;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.45fr;
    gap: 2.2rem;
    align-items: start;
}

.about-hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-hero-image {
    width: 100%;
    height: 465px;
    object-fit: cover;
    border-radius: 20px;
}

.about-hero-image-secondary {
    margin-top: 0;
}

.about-title {
    font-size: 2rem;
    line-height: 1.2;
    color: #1b1f27;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #272b33;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #272b33;
    margin: 0;
    font-weight: 400;
}

.about-hero-text strong {
    font-weight: 800;
}

.about-projects {
    padding: 2.8rem 0 4.8rem;
    background: #ffffff;
}

.projects-header {
    text-align: center;
    margin-bottom: 2.6rem;
}

.projects-title {
    font-size: 2.1rem;
    margin: 0 0 0.4rem;
    color: #1b1f27;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.projects-subtitle {
    margin: 0;
    color: #7b8089;
    font-size: 1rem;
    font-weight: 600;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.6rem;
    row-gap: 3.2rem;
}

.project-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.project-image {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 18px;
}

.project-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.project-name {
    font-size: 1.6rem;
    margin: 0;
    color: #20242c;
    font-weight: 600;
    line-height: 1.2;
}

.project-arrow {
    color: #20242c;
    font-size: 1.7rem;
    line-height: 1;
    flex-shrink: 0;
}

.project-description {
    font-size: 1.02rem;
    line-height: 1.4;
    color: #7b8089;
    margin: 0.42rem 0 0;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .about-title,
    .projects-title {
        font-size: 1.8rem;
    }

    .about-description,
    .about-quote {
        font-size: 1rem;
    }

    .project-name {
        font-size: 1.4rem;
    }

    .project-description {
        font-size: 0.96rem;
    }
}

@media (max-width: 992px) {
    .about-page {
        padding-top: 3rem;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .about-hero-image {
        height: 300px;
    }

    .about-hero-image-secondary {
        margin-top: 0;
    }

    .projects-grid {
        column-gap: 1.2rem;
        row-gap: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero-images {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        height: 220px;
    }

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

    .projects-title {
        font-size: 1.7rem;
    }

    .about-description,
    .about-quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

    .project-image {
        height: 220px;
    }

    .project-name {
        font-size: 1.3rem;
    }

    .project-description {
        font-size: 0.92rem;
    }
}

.contact-page {
    background: #ffffff;
    padding: 3.8rem 0 2.4rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.contact-title {
    margin: 0;
    color: #1f2329;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
}

.contact-card {
    background: #cfdee7;
    border-radius: 22px;
    padding: 2.2rem 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-label {
    display: block;
    color: #1f2329;
    font-weight: 500;
    margin-bottom: 0.45rem;
    font-size: 0.94rem;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border: 1px solid #a9b4bf;
    border-radius: 12px;
    background: #f6f7f8;
    color: #1f2329;
    padding: 0.95rem 1rem;
    font-size: 0.96rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #7a838d;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #3f7da8;
    box-shadow: 0 0 0 0.2rem rgba(63, 125, 168, 0.18);
}

.contact-submit {
    border: 0;
    border-radius: 999px;
    background: #2f77ad;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    padding: 1rem 2.2rem;
    width: fit-content;
    min-width: 170px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: #296792;
    transform: translateY(-1px);
}

.contact-image-wrapper {
    border-radius: 22px;
    overflow: hidden;
    min-height: 100%;
}

.contact-image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
}

.contact-location {
    background: #ffffff;
    padding: 1rem 0 4rem;
}

.location-content {
    max-width: 680px;
}

.location-title {
    margin: 0 0 1rem;
    color: #1f2329;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.05;
}

.location-description {
    margin: 0 0 2.6rem;
    color: #585f68;
    font-size: 1.2rem;
    line-height: 1.35;
}

.location-block {
    margin-bottom: 1.6rem;
}

.location-heading {
    margin: 0 0 0.35rem;
    color: #1f2329;
    font-size: 1.15rem;
    font-weight: 700;
}

.location-text {
    margin: 0;
    color: #2f3339;
    font-size: 1.12rem;
}

.location-map {
    margin-top: 2.2rem;
    border-radius: 16px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 1200px) {
    .contact-title {
        font-size: 2.05rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-image {
        min-height: 520px;
    }

    .location-title {
        font-size: 2.25rem;
    }

    .location-description,
    .location-text {
        font-size: 1.05rem;
    }

    .location-heading {
        font-size: 1.05rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-image {
        min-height: 340px;
    }

    .location-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 2.6rem;
    }

    .contact-header {
        margin-bottom: 1.6rem;
    }

    .contact-title {
        font-size: 1.9rem;
    }

    .contact-card {
        border-radius: 18px;
        padding: 1.4rem 1rem;
    }

    .contact-input,
    .contact-textarea {
        font-size: 0.92rem;
    }

    .contact-submit {
        width: 100%;
        min-width: 0;
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }

    .contact-image-wrapper {
        border-radius: 18px;
    }

    .contact-image {
        min-height: 250px;
    }

    .location-title {
        font-size: 1.9rem;
    }

    .location-description {
        margin-bottom: 1.7rem;
        font-size: 0.98rem;
    }

    .location-heading {
        font-size: 1rem;
    }

    .location-text {
        font-size: 0.98rem;
    }

    .location-map iframe {
        height: 280px;
    }
}

.testimonials-section {
    position: relative;
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #1a2744 0%, #2d4a7b 100%);
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.testimonials-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.85) 0%, rgba(45, 74, 123, 0.85) 100%);
    z-index: 1;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.testimonial-stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #ffc107;
}

.testimonial-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 3.5rem 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.8rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-stars {
        font-size: 1rem;
    }
}
