/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--gradient); /* Dark blue to lighter blue gradient */
    background-attachment: fixed; /* Ensures the gradient covers the entire viewport */
}

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #0A2240; /* Navy Blue from logo */
    --primary-light: #1A3A5A; /* Slightly lighter primary for hover/active states */
    --secondary-color: #D79A2A; /* Golden Yellow from logo */
    --secondary-light: #E8B04F; /* Slightly lighter secondary for hover/active states */
    --text-color: #0A2240; /* Using primary color for main text */
    --text-light: #6B7280; /* Keeping original light text color */
    --background-color: #F1E1C0; /* Light Cream from logo for background */
    --white: #ffffff;
    --black: #000000;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --gradient: linear-gradient(180deg, #0A2240 0%, #4A6C9B 100%);
    
    /* Spacing */
    --container-max-width: 1500px;
    --section-padding: 5rem 0;
    --header-height: 80px;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: var(--section-padding);
}

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

.section__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section__title__white {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section__subtitle__white {
    font-size: var(--font-size-lg);
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}


.highlight {
    color: var(--white);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn--primary:hover {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--primary--index {
    background: var(--primary-color);
    color: var(--white);
}

.btn--primary--index:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}


.btn--secondary--black {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary--black:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo h2 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
}

.nav__logo span {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    display: block;
    margin-top: -5px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link.active-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 9px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    width: 170px;
    height: 38px;
    font-size: 15px;

    
}

.nav__phone:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.nav__phone--secondary {
    background: var(--primary-light); /* Um fundo diferente para o segundo número, se necessário */
    color: var(--white);
}

.nav__phone--secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}


.nav__toggle,
.nav__close {
    display: none;
    font-size: var(--font-size-xl);
    cursor: pointer;
    color: var(--text-color);
}

/* ===== MAIN ===== */
.main {
    margin-top: var(--header-height);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header__content h1 {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header__content p {
    font-size: var(--font-size-xl);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== HOME SECTION ===== */
.home {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-color) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.home__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.home__description {
    font-size: var(--font-size-lg);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.home__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
}

.home__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background-color: var(--white); /* Adicionado background branco */
    padding: 15px; /* Adicionado padding para simular a borda branca */
}

.home__image img {
    width: 100%; /* Permite que a largura seja configurada via HTML se necessário, mas mantém o padrão de 100% */
    height: auto; /* Permite que a altura seja configurada via HTML se necessário, mas mantém o padrão auto */
    object-fit: cover;
    display: block; /* Garante que a imagem se comporte como bloco */
    border-radius: 8px; /* Borda arredondada interna */
}

.home__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background: transparent;
}

.services-preview__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-preview__card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.service-preview__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-preview__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: var(--font-size-2xl);
}

.service-preview__card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-preview__card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-preview__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-preview__link:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.services-preview__cta {
    text-align: center;
}

/* ===== SERVICE CARD IMAGES ===== */
.service-preview__images {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-preview__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.service-preview__image.active {
    opacity: 1;
}

.service-preview__dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.service-preview__dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-preview__dots .dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.service-preview__dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: transparent;
}

.about-preview__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: var(--white);
}

.about-preview__content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-preview__content p {
    font-size: var(--font-size-lg);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-preview__features {
    margin-bottom: 2rem;
}

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

.feature i {
    color: var(--success);
    font-size: var(--font-size-lg);
}

.feature span {
    color: var(--white);
    font-weight: 500;
}

.about-preview__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-preview__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== PROJECTS PREVIEW ===== */
.projects-preview {
    background: var(--white);
}

.projects-preview__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-preview__card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-preview__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.project-preview__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-preview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-preview__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.project-preview__card:hover .project-preview__overlay {
    opacity: 1;
}

.project-preview__card:hover .project-preview__image img {
    transform: scale(1.1);
}

.project-preview__overlay h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-preview__overlay p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.projects-preview__cta {
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta {
    background: transparent;
    color: var(--white);
}

.cta__container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__buttons .btn--primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta__buttons .btn--primary:hover {
    background: var(--background-color);
    transform: translateY(-2px);
}

.cta__buttons .btn--secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta__buttons .btn--secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ===== ABOUT PAGE STYLES ===== */
.company-overview {
    background: transparent;
}

.company-overview__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-overview__content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.company-overview__content p {
    font-size: var(--font-size-lg);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.company-overview__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background-color: var(--white); /* Adicionado background branco */
    padding: 15px; /* Adicionado padding para simular a borda branca */
}

.company-overview__image img {
    width: 100%; /* Permite que a largura seja configurada via HTML se necessário, mas mantém o padrão de 100% */
    height: auto; /* Permite que a altura seja configurada via HTML se necessário, mas mantém o padrão auto */
    object-fit: cover;
    display: block; /* Garante que a imagem se comporte como bloco */
    border-radius: 8px; /* Borda arredondada interna */
}

/* ===== MVV SECTION ===== */
.mvv {
    background: transparent;
}

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

.mvv__card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.mvv__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mvv__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: var(--font-size-2xl);
}

.mvv__card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mvv__card p {
    color: var(--text-light);
    line-height: 1.6;
}

.mvv__card ul {
    list-style: none;
    text-align: left;
}

.mvv__card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.mvv__card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ===== DIFFERENTIALS ===== */
.differentials {
    background: var(--white);
}

.differentials__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.differentials__content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.differentials__content p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.differentials__list {
    display: grid;
    gap: 1.5rem;
}

.differential {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.differential__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.differential__content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.differential__content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.differentials__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.differentials__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===== STATISTICS ===== */
.statistics {
    background: var(--background-color);
}

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

.statistic {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.statistic:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.statistic__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: var(--font-size-xl);
}

.statistic__number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.statistic p {
    color: var(--text-light);
    font-weight: 500;
}

/* ===== TEAM ===== */
.team {
    background: var(--white);
}

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

.team__member {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    max-width: 350px;
}

.team__member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
}

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

.team__info h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.team__role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team__description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team__contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team__contact a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.team__contact a:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ===== SERVICES PAGE ===== */
.services-overview {
    background: transparent;
}

.services-overview__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-overview__content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.services-overview__content p {
    font-size: var(--font-size-lg);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services {
    background: var(--background-color);
}

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

.service__card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: var(--font-size-2xl);
}

.service__card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service__card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service__card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service__card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service__card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service__btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service__btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ===== PROCESS ===== */
.process {
    background: var(--white);
}

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

.process__step {
    text-align: center;
    position: relative;
}

.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
}

.process__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.process__content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.process__content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== PROJECTS PAGE ===== */
.project-filters {
    background: var(--white);
    padding: 2rem 0;
}

.filters__container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter__btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter__btn:hover,
.filter__btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== PROJECTS GRID ===== */
.projects {
    background: var(--gradient);
}

.projects__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project__card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
}

.project__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.project__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.project__card:hover .project__overlay {
    opacity: 1;
}

.project__card:hover .project__image img {
    transform: scale(1.1);
}

.project__info h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project__info p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.project__category {
    font-size: var(--font-size-xs);
    background: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.project__btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.project__btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.projects__load-more {
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
}

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

.testimonial {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial__content {
    margin-bottom: 1.5rem;
}

.testimonial__content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

.testimonial__content p::before {
    content: '"';
    font-size: var(--font-size-4xl);
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__info h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.testimonial__info span {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* ===== CONTACT PAGE ===== */
.contact {
    background: var(--white);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact__info p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact__details {
    margin-bottom: 2rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.contact__item h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact__item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.contact__link:hover {
    color: var(--primary-light);
}

.quick__contact {
    display: flex;
    gap: 1rem;
}

.quick__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.quick__btn.whatsapp {
    background: #25d366;
    color: var(--white);
}

.quick__btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.quick__btn.phone {
    background: var(--primary-color);
    color: var(--white);
}

.quick__btn.phone:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contact__form-container {
    background: linear-gradient(180deg, #0A2240 0%, #4A6C9B 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact__form-container h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact__form-container p {
    color: var(--white);
    margin-bottom: 2rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form__group {
    position: relative;
    margin-bottom: 1rem;
}

.form__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: var(--font-size-base);
    background: var(--white);
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    transform: translateY(-2.5rem) scale(0.9);
    color: var(--primary-color);
    background: var(--white);
    padding: 0 0.5rem;
}

.form__label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    transform-origin: left;
}

.form__textarea {
    min-height: 270px;
    resize: vertical;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form__checkbox input {
    margin-top: 0.25rem;
}

.form__checkbox label {
    position: static;
    transform: none;
    color: var(--text-light);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.form__checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form__checkbox a:hover {
    text-decoration: underline;
}

/* ===== MAP SECTION ===== */
.map {
    background: var(--gradient);
}

.map__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map__embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map__info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.map__info h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.map__details {
    margin-bottom: 2rem;
}

.map__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.map__item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    margin-top: 0.25rem;
}

.map__item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.map__item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--white);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--gradient);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-md);
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    background: #e5e7eb;
}

.faq__question h4 {
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.faq__question i {
    color: var(--white);
    transition: var(--transition);
}

.faq__question.active i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq__answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq__answer p {
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.932);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal__content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal__content--large {
    max-width: 900px;
}

.modal__header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__header h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.modal__close {
    background: none;
    border: none;
    font-size: var(--font-size-xl);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal__close:hover {
    color: var(--text-color);
}

.modal__body {
    padding: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1f2937;
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer__section h3,
.footer__section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__logo h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
}

.footer__logo span {
    font-size: var(--font-size-sm);
    color: #9ca3af;
    display: block;
    margin-top: -5px;
    margin-bottom: 1rem;
}

.footer__section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer__section ul {
    list-style: none;
}

.footer__section li {
    margin-bottom: 0.5rem;
}

.footer__section a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__section a:hover {
    color: var(--primary-light);
}

.footer__section i {
    color: var(--primary-light);
}

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer__bottom p {
    color: #9ca3af;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    .home__container,
    .about-preview__container,
    .company-overview__container,
    .differentials__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map__container {
        grid-template-columns: 1fr;
    }
    
    .process__step:not(:last-child)::after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.5rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav__link {
        font-size: var(--font-size-xl);
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: var(--font-size-2xl);
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__phone {
        display: none;
    }
    
    .home__buttons {
        flex-direction: column;
    }
    
    .home__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick__contact {
        flex-direction: column;
    }
    
    .modal {
        padding: 1rem;
    }
    
    .modal__content {
        max-height: 90vh;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header__content h1 {
        font-size: var(--font-size-4xl);
    }
    
    .home__title {
        font-size: var(--font-size-4xl);
    }
    
    .section__title {
        font-size: var(--font-size-3xl);
    }
    
    .services-preview__container,
    .services__container,
    .projects__container,
    .projects-preview__container {
        grid-template-columns: 1fr;
    }
    
    .filters__container {
        gap: 0.5rem;
    }
    
    .filter__btn {
        padding: 0.5rem 0.75rem;
        font-size: var(--font-size-sm);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== ACCESSIBILITY ===== */
.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;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-color: #000000;
        --text-light: #333333;
        --primary-color: #0000ff;
        --secondary-color: #ff6600;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

