
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E26858;
    --secondary-color: #A9A8AD;
    --accent-color: #8B4252;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.constructivist-header {
    background-color: var(--bg-white);
    border-bottom: 3px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.constructivist-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-geometric {
    display: flex;
    gap: 4px;
    position: relative;
}

.geo-shape {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.geo-shape.geo-2 {
    background-color: var(--accent-color);
    margin-top: 8px;
}

.geo-shape.geo-3 {
    background-color: var(--secondary-color);
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.constructivist-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%);
}

.banner-geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.geo-line {
    position: absolute;
    background-color: var(--primary-color);
}

.geo-line-1 {
    width: 100%;
    height: 4px;
    top: 20%;
    transform: rotate(-15deg);
}

.geo-line-2 {
    width: 80%;
    height: 3px;
    bottom: 30%;
    right: 0;
    background-color: var(--accent-color);
    transform: rotate(10deg);
}

.geo-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 15%;
    right: 10%;
    background-color: transparent;
}

.geo-rectangle {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    bottom: 20%;
    left: 5%;
    transform: rotate(45deg);
}

.banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.banner-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    max-width: 700px;
    position: relative;
    border: 4px solid var(--primary-color);
    margin-left: 5%;
}

.box-accent {
    position: absolute;
    background-color: var(--accent-color);
}

.accent-1 {
    width: 60px;
    height: 4px;
    top: -4px;
    left: 20%;
}

.accent-2 {
    width: 4px;
    height: 60px;
    bottom: -4px;
    right: 15%;
}

.constructivist-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.banner-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-constructivist {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-constructivist::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transition: left 0.3s;
    z-index: -1;
}

.btn-constructivist:hover::before {
    left: 0;
}

.btn-constructivist:hover {
    color: var(--text-light);
    border-color: var(--accent-color);
}

.btn-constructivist.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-constructivist.btn-outline::before {
    background-color: var(--primary-color);
}

.btn-constructivist.btn-outline:hover {
    color: var(--text-light);
}

.btn-constructivist.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-link-constructivist {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.btn-link-constructivist:hover {
    gap: 1rem;
}

.constructivist-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.constructivist-header-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-accent-line {
    flex: 1;
    max-width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.constructivist-card {
    background-color: var(--bg-white);
    border: 3px solid var(--secondary-color);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.constructivist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.card-line {
    position: absolute;
    background-color: var(--primary-color);
}

.card-line-1 {
    width: 100%;
    height: 2px;
    top: 20%;
}

.card-line-2 {
    width: 2px;
    height: 60%;
    right: 15%;
    top: 20%;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: #d3d3d3;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 2rem;
}

.constructivist-feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--secondary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.feature-icon {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.constructivist-feature h3 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-box {
    background-color: var(--bg-light);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    border: 4px solid var(--primary-color);
}

.cta-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-line {
    position: absolute;
    background-color: var(--accent-color);
}

.cta-line-1 {
    width: 200px;
    height: 3px;
    top: 20%;
    left: 10%;
    transform: rotate(-20deg);
}

.cta-line-2 {
    width: 150px;
    height: 3px;
    bottom: 25%;
    right: 15%;
    transform: rotate(25deg);
}

.cta-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    background-color: transparent;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.constructivist-page-header {
    background-color: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--primary-color);
}

.page-header-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.page-line {
    position: absolute;
    background-color: var(--primary-color);
}

.page-line-1 {
    width: 300px;
    height: 4px;
    top: 30%;
    left: 10%;
    transform: rotate(-15deg);
}

.page-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
    background-color: transparent;
}

.constructivist-page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.constructivist-page-header p {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.services-detail {
    padding: 4rem 0;
}

.service-detail-item {
    margin-bottom: 5rem;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-detail-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-geometric {
    margin: 1.5rem 0;
}

.detail-line {
    width: 150px;
    height: 4px;
    background-color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.service-detail-list {
    list-style: none;
    margin: 2rem 0;
}

.service-detail-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.service-detail-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detail-image {
    width: 100%;
    max-width: 700px;
 
    margin-top: 2rem;
    border: 3px solid var(--secondary-color);
    background-color: #d3d3d3;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 2rem;
}

.constructivist-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 2rem auto 1.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.constructivist-step h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 3px solid var(--secondary-color);
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #d3d3d3;
    transition: transform 0.3s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(226, 104, 88, 0.95);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 2rem;
}

.portfolio-image-wrapper:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-image-wrapper:hover img {
    transform: scale(1.1);
}

.portfolio-overlay-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-line {
    position: absolute;
    background-color: var(--bg-white);
}

.overlay-line-1 {
    width: 100%;
    height: 2px;
    top: 30%;
}

.overlay-line-2 {
    width: 2px;
    height: 60%;
    right: 20%;
    top: 20%;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.portfolio-overlay p {
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    padding: 2.5rem;
    position: relative;
}

.testimonial-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.testimonial-line {
    position: absolute;
    width: 100%;
    height: 3px;
    top: 20%;
    background-color: var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-geometric-accent {
    position: relative;
    margin-bottom: 2rem;
}

.accent-line {
    position: absolute;
    background-color: var(--primary-color);
}

.accent-line-1 {
    width: 100px;
    height: 4px;
    top: 0;
    left: 0;
}

.accent-line-2 {
    width: 4px;
    height: 60px;
    top: 10px;
    left: 90px;
    background-color: var(--accent-color);
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    background-color: #d3d3d3;
}

.about-image-geometric {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
}

.img-line {
    position: absolute;
    background-color: var(--accent-color);
}

.img-line-1 {
    width: 80px;
    height: 4px;
    top: 0;
    transform: rotate(45deg);
}

.img-line-2 {
    width: 4px;
    height: 80px;
    top: 0;
    right: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.expertise-image {
    position: relative;
}

.expertise-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    background-color: #d3d3d3;
}

.expertise-geometric-overlay {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
}

.expertise-rect {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.expertise-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
    background-color: transparent;
}

.expertise-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.expertise-geometric-accent {
    margin-bottom: 2rem;
}

.expertise-line {
    width: 120px;
    height: 4px;
    background-color: var(--primary-color);
}

.expertise-list {
    list-style: none;
    margin: 2rem 0;
}

.expertise-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.expertise-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mission-line {
    position: absolute;
    background-color: var(--accent-color);
}

.mission-line-1 {
    width: 200px;
    height: 3px;
    top: 15%;
    left: 10%;
    transform: rotate(-25deg);
}

.mission-line-2 {
    width: 150px;
    height: 3px;
    bottom: 20%;
    right: 15%;
    transform: rotate(30deg);
}

.mission-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    background-color: transparent;
}

.mission-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-geometric-accent,
.contact-form-geometric {
    margin-bottom: 2rem;
}

.contact-accent-line,
.form-accent-line {
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
}

.constructivist-contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-icon {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.constructivist-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--secondary-color);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-map-wrapper {
    margin-top: 4rem;
}

.contact-map-wrapper h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.map-geometric-accent {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.map-accent-line {
    width: 150px;
    height: 4px;
    background-color: var(--primary-color);
}

.map-container {
    position: relative;
    border: 4px solid var(--primary-color);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.constructivist-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-color);
    position: relative;
}

.footer-geometric-line {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-bottom p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.constructivist-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-top: 4px solid var(--primary-color);
    padding: 1.5rem 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.constructivist-cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cookie-geo-line {
    position: absolute;
    background-color: var(--accent-color);
}

.cookie-geo-line-1 {
    width: 200px;
    height: 3px;
    top: 20%;
    left: 5%;
    transform: rotate(-10deg);
}

.cookie-geo-line-2 {
    width: 150px;
    height: 2px;
    bottom: 25%;
    right: 10%;
    background-color: var(--primary-color);
    transform: rotate(15deg);
}

.cookie-geo-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 10%;
    right: 15%;
    background-color: transparent;
}

.cookie-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-banner-text a:hover {
    color: var(--accent-color);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 3px solid;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.cookie-btn-accept:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(226, 104, 88, 0.3);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--secondary-color);
}

.cookie-btn-decline:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-settings:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.success-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.success-content {
    background-color: var(--bg-light);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    border: 4px solid var(--primary-color);
}

.success-geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.success-geo-line {
    position: absolute;
    background-color: var(--accent-color);
}

.success-geo-line-1 {
    width: 200px;
    height: 3px;
    top: 15%;
    left: 5%;
    transform: rotate(-20deg);
}

.success-geo-line-2 {
    width: 150px;
    height: 3px;
    bottom: 20%;
    right: 10%;
    background-color: var(--primary-color);
    transform: rotate(25deg);
}

.success-geo-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 10%;
    right: 15%;
    background-color: transparent;
}

.success-geo-rect {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    bottom: 15%;
    left: 8%;
    transform: rotate(45deg);
}

.success-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.success-icon-box {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-color);
    background-color: var(--bg-white);
}

.success-check-mark {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    position: relative;
    z-index: 3;
}

.success-check-mark svg {
    width: 100%;
    height: 100%;
}

.success-icon-accent {
    position: absolute;
    background-color: var(--accent-color);
}

.success-accent-1 {
    width: 80px;
    height: 3px;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.success-accent-2 {
    width: 3px;
    height: 80px;
    bottom: -4px;
    right: -4px;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.success-geometric-divider {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.success-divider-line {
    width: 150px;
    height: 4px;
    background-color: var(--primary-color);
}

.success-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

        .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        border-top: 3px solid var(--primary-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 20px;
        border-bottom: 1px solid var(--bg-light);
        text-align: center;
    }

    .constructivist-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .banner-box {
        padding: 2rem;
        margin-left: 0;
    }

    .banner-cta {
        flex-direction: column;
    }

    .btn-constructivist {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .process-grid,
    .portfolio-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .constructivist-page-header h1 {
        font-size: 2.5rem;
    }

    .about-content-wrapper,
    .expertise-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .constructivist-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .banner-box {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .constructivist-page-header h1 {
        font-size: 2rem;
    }

    .constructivist-section {
        padding: 3rem 0;
    }

    .success-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .success-content {
        padding: 2.5rem 1.5rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn-constructivist {
        width: 100%;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .contact-info h2,
    .contact-form-wrapper h2,
    .contact-map-wrapper h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    .constructivist-header .container {
        padding: 0.8rem 10px;
    }

    .logo-text {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .logo-geometric {
        gap: 2px;
    }

    .geo-shape {
        width: 10px;
        height: 10px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .constructivist-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .banner-box {
        padding: 1rem;
        margin-left: 0;
        border-width: 3px;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .constructivist-page-header {
        padding: 2.5rem 0;
    }

    .constructivist-page-header h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .constructivist-page-header p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .constructivist-header-text {
        gap: 1rem;
    }

    .section-accent-line {
        max-width: 50px;
        height: 2px;
    }

    .btn-constructivist {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
        border-width: 2px;
    }

    .constructivist-section {
        padding: 2.5rem 0;
    }

    .service-card,
    .constructivist-card {
        padding: 1.2rem;
        border-width: 2px;
    }

    .service-content h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-card img {
        height: 150px;
        margin-bottom: 1rem;
    }

    .cta-box {
        padding: 1.5rem 1rem;
        border-width: 3px;
    }

    .cta-box h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-image-wrapper img {
        height: 200px;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
        border-width: 2px;
    }

    .contact-wrapper {
        gap: 1.5rem;
    }

    .contact-info h2,
    .contact-form-wrapper h2,
    .contact-map-wrapper h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        border-width: 2px;
        font-size: 0.9rem;
    }

    .contact-map-wrapper {
        margin-top: 2.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .constructivist-cookie-banner {
        padding: 1rem 0;
        border-top-width: 3px;
    }

    .cookie-banner-wrapper {
        padding: 0 10px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-text p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
        border-width: 2px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .service-detail-icon {
        width: 60px;
        height: 60px;
    }

    .service-detail-image {
        height: 250px;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .about-text-content h2,
    .expertise-text h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .about-image-wrapper img,
    .expertise-image img {
        height: 250px;
    }

    .value-item {
        padding: 1.5rem 1rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .mission-box h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 320px) {
    .success-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .success-content {
        padding: 1.5rem 1rem;
        border-width: 3px;
    }

    .success-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .success-message {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .success-icon-box {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .success-check-mark {
        width: 40px;
        height: 40px;
    }

    .success-divider-line {
        width: 100px;
        height: 3px;
    }

    .success-actions {
        gap: 1rem;
        flex-direction: column;
    }

    .success-actions .btn-constructivist {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .nav-menu a {
        padding: 0.8rem 15px;
        font-size: 0.85rem;
    }
}
