/* Minimalist Professional Design - Construction Company */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Minimalist Color Palette */
    --primary-color: #1a1a1a;
    --secondary-color: #666666;
    --accent-color: #000000;
    --hover-color: #2d6a4f;
    --text-color: #333333;
    --text-light: #7a7a7a;
    --border-color: #e0e0e0;
    --light-bg: #fafafa;
    --white: #ffffff;
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-light: 0 2px 8px rgba(0,0,0,0.06);
    --transition: all 0.25s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation - Minimalist */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.02em;
}

.logo:hover {
    opacity: 0.7;
}

.logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

.logo span {
    line-height: 1.3;
    display: flex;
    flex-direction: column;
}

.logo span small {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 4px;
    letter-spacing: -0.01em;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: scaleX(1);
    background: var(--hover-color);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--hover-color);
}

.language-dropdown {
    position: relative;
}

.language-btn {
    padding: 6px 24px 6px 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

.language-btn::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-color);
}

.language-btn:hover {
    border-color: var(--hover-color);
    color: var(--hover-color);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    min-width: 100%;
    display: none;
    flex-direction: column;
    z-index: 1000;
    margin-top: -1px;
}

.language-options.active {
    display: flex;
}

.language-option {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(45, 106, 79, 0.05);
    color: var(--hover-color);
}

.language-option.active {
    background: var(--light-bg);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section - Minimalist with Blueprint Background */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f8f9f8;
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='1400' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='smallGrid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='rgba(45,106,79,0.12)' stroke-width='0.5'/%3E%3C/pattern%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(45,106,79,0.2)' stroke-width='1.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='1400' height='800' fill='%23f5f7f5'/%3E%3Crect width='1400' height='800' fill='url(%23smallGrid)'/%3E%3Crect width='1400' height='800' fill='url(%23grid)'/%3E%3Cg opacity='0.25'%3E%3Cpath d='M 200 300 L 320 220 L 480 220 L 480 500 L 320 500 Z' fill='rgba(45,106,79,0.03)' stroke='%232d6a4f' stroke-width='2.5'/%3E%3Cline x1='320' y1='220' x2='320' y2='500' stroke='%232d6a4f' stroke-width='1.5' stroke-dasharray='6,4'/%3E%3Cline x1='400' y1='220' x2='400' y2='500' stroke='%232d6a4f' stroke-width='1.5' stroke-dasharray='6,4'/%3E%3Crect x='335' y='280' width='50' height='70' fill='rgba(45,106,79,0.02)' stroke='%232d6a4f' stroke-width='2'/%3E%3Crect x='335' y='370' width='50' height='70' fill='rgba(45,106,79,0.02)' stroke='%232d6a4f' stroke-width='2'/%3E%3Cline x1='360' y1='220' x2='360' y2='280' stroke='%232d6a4f' stroke-width='1'/%3E%3Cline x1='360' y1='350' x2='360' y2='370' stroke='%232d6a4f' stroke-width='1'/%3E%3Cpath d='M 650 350 L 790 270 L 970 270 L 970 580 L 790 580 Z' fill='rgba(45,106,79,0.03)' stroke='%232d6a4f' stroke-width='2.5'/%3E%3Cline x1='790' y1='270' x2='790' y2='580' stroke='%232d6a4f' stroke-width='1.5' stroke-dasharray='6,4'/%3E%3Cline x1='880' y1='270' x2='880' y2='580' stroke='%232d6a4f' stroke-width='1.5' stroke-dasharray='6,4'/%3E%3Crect x='810' y='340' width='55' height='85' fill='rgba(45,106,79,0.02)' stroke='%232d6a4f' stroke-width='2'/%3E%3Crect x='810' y='450' width='55' height='85' fill='rgba(45,106,79,0.02)' stroke='%232d6a4f' stroke-width='2'/%3E%3Cpath d='M 1080 280 L 1180 220 L 1320 220 L 1320 520 L 1180 520 Z' fill='rgba(45,106,79,0.03)' stroke='%232d6a4f' stroke-width='2'/%3E%3Cline x1='1180' y1='220' x2='1180' y2='520' stroke='%232d6a4f' stroke-width='1.5' stroke-dasharray='6,4'/%3E%3Crect x='1195' y='280' width='45' height='65' fill='rgba(45,106,79,0.02)' stroke='%232d6a4f' stroke-width='1.5'/%3E%3Crect x='1195' y='370' width='45' height='65' fill='rgba(45,106,79,0.02)' stroke='%232d6a4f' stroke-width='1.5'/%3E%3Ctext x='350' y='210' font-family='monospace' font-size='13' fill='%232d6a4f' font-weight='600'%3E8.5m%3C/text%3E%3Ctext x='830' y='260' font-family='monospace' font-size='13' fill='%232d6a4f' font-weight='600'%3E9.2m%3C/text%3E%3Ctext x='1210' y='210' font-family='monospace' font-size='12' fill='%232d6a4f' font-weight='600'%3E6.8m%3C/text%3E%3Cline x1='190' y1='300' x2='190' y2='500' stroke='%232d6a4f' stroke-width='2'/%3E%3Cline x1='185' y1='305' x2='195' y2='305' stroke='%232d6a4f' stroke-width='2'/%3E%3Cline x1='185' y1='495' x2='195' y2='495' stroke='%232d6a4f' stroke-width='2'/%3E%3Ccircle cx='250' cy='180' r='4' fill='%232d6a4f'/%3E%3Ccircle cx='700' cy='200' r='4' fill='%232d6a4f'/%3E%3Ccircle cx='1100' cy='160' r='3.5' fill='%232d6a4f'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(250, 250, 250, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-shadow:
        0 2px 8px rgba(255, 255, 255, 0.9),
        0 4px 16px rgba(255, 255, 255, 0.7),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 700px;
    text-shadow:
        0 2px 6px rgba(255, 255, 255, 0.9),
        0 4px 12px rgba(255, 255, 255, 0.7),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.btn-large {
    padding: 14px 40px;
    font-size: 15px;
}

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

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

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.85) 100%);
    border: 1px solid rgba(45, 106, 79, 0.2);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.contact-group:hover {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.06) 0%, rgba(45, 106, 79, 0.04) 100%);
    border-color: rgba(45, 106, 79, 0.4);
    box-shadow:
        0 6px 18px rgba(45, 106, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.contact-group:hover .contact-number {
    color: var(--hover-color);
}

.contact-number {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.contact-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.contact-actions a {
    flex: 1;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 16px;
    border: 1px solid #2d6a4f;
    background: #f7faf8;
    color: #2d6a4f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: var(--transition);
    white-space: nowrap;
}

.contact-btn-small {
    padding: 9px 14px;
    font-size: 12px;
}

.contact-btn:hover {
    background: #2d6a4f;
    border-color: #2d6a4f;
    color: var(--white);
}

.contact-btn.whatsapp {
    border-color: #25D366;
    color: #25D366;
    background: #f0fdf4;
}

.contact-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.contact-btn svg {
    flex-shrink: 0;
}

/* Buttons - Minimalist */
.btn {
    display: inline-block;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.02em;
}

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

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

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

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

.btn-large {
    padding: 14px 40px;
    font-size: 15px;
}

/* Sections - Minimalist */
.featured-section,
.about-section,
.contact-section,
.gallery-section {
    padding: 100px 0;
}

.featured-section {
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-size: 32px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: -0.03em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

/* Stats Section - Minimalist */
.stats-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 0;
}

.stat-item:hover {
    transform: none;
}

.stat-icon {
    margin-bottom: 20px;
    opacity: 0.7;
    color: var(--primary-color);
}

.stat-icon svg {
    width: 56px;
    height: 56px;
    display: block;
    margin: 0 auto;
}

.stat-number {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 8px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gallery Grid - Minimalist */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1px;
    margin-top: 60px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: none;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item a {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(224,224,224,0.3) 1px, transparent 1px),
        linear-gradient(0deg, rgba(224,224,224,0.3) 1px, transparent 1px),
        rgba(255,255,255,0.95);
    background-size: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-icon {
    color: var(--hover-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.view-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.video-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    pointer-events: auto;
}

.video-wrapper video {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.video-wrapper::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    pointer-events: none;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 5;
}

.video-wrapper:hover::after {
    opacity: 0;
}

/* Page Header - Minimalist */
.page-header {
    background: var(--white);
    color: var(--primary-color);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: -0.03em;
}

.page-header p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

/* Gallery Filters - Minimalist */
.gallery-filters {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.filter-buttons {
    display: inline-flex;
    gap: 0;
    flex-wrap: nowrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    transition: var(--transition);
    font-size: 14px;
    background: var(--white);
    position: relative;
}

.filter-btn:not(:last-child) {
    border-right: none;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--hover-color);
    background: rgba(45, 106, 79, 0.05);
    border-color: var(--hover-color);
}

.filter-btn.active {
    border-right: 1px solid var(--hover-color) !important;
}

/* About Section - Minimalist */
.about-text {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: var(--text-color);
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    margin-top: 60px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.feature-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(45, 106, 79, 0.03);
    transform: none;
}

.feature-card:hover .feature-icon {
    color: var(--hover-color);
    opacity: 1;
}

.feature-icon {
    margin-bottom: 24px;
    display: inline-block;
    color: var(--primary-color);
    opacity: 0.8;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

/* Contact Section - Minimalist */
.contact-section {
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    margin-top: 60px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.contact-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(45, 106, 79, 0.03);
}

.contact-card:hover .contact-icon {
    color: var(--hover-color);
    opacity: 1;
}

.contact-icon {
    margin-bottom: 24px;
    display: inline-block;
    color: var(--primary-color);
    opacity: 0.8;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-email-link {
    display: inline-block;
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.contact-email-link:hover {
    color: var(--hover-color);
    border-bottom-color: var(--hover-color);
}

.contact-social-link {
    display: block;
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-social-link:hover {
    color: var(--hover-color);
}

.contact-phone-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-phone-item {
    padding: 20px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-phone-item:hover {
    background: rgba(45, 106, 79, 0.03);
    border-color: rgba(45, 106, 79, 0.2);
}

.contact-phone-item:hover .phone-number {
    color: var(--hover-color);
}

.phone-number {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.phone-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: var(--transition);
    white-space: nowrap;
}

.contact-link-btn:hover {
    background: var(--hover-color);
    color: var(--white);
}

.contact-link-btn svg {
    width: 16px;
    height: 16px;
    display: block;
}

.contact-link-btn.whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.contact-link-btn.whatsapp:hover {
    background: #25D366;
    color: var(--white);
}

.contact-link-btn.instagram-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.contact-link-btn.instagram-btn:hover {
    background: var(--hover-color);
    color: var(--white);
}

/* Contact Map Styles */
.contact-map {
    margin-top: 60px;
    width: 100%;
}

.map-title {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

.map-container {
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--light-bg);
    box-shadow: var(--shadow-light);
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 0;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
}

.map-address svg {
    color: var(--hover-color);
    flex-shrink: 0;
}

.map-address:hover {
    border-color: var(--hover-color);
    box-shadow: var(--shadow-light);
}

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

    .contact-card {
        padding: 40px 30px;
    }

    .phone-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-link-btn {
        justify-content: center;
    }

    .contact-map {
        margin-top: 40px;
    }

    .map-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-address {
        font-size: 14px;
        padding: 14px 16px;
        flex-wrap: wrap;
        text-align: center;
    }
}

/* Footer - Minimalist */
.footer {
    background: var(--white);
    color: var(--text-light);
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 300;
}

/* Lightbox - Minimalist */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.98);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: var(--shadow-light);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    opacity: 0.5;
}

.lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    font-size: 24px;
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 300;
}

.lightbox-nav button:hover {
    background: var(--white);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 71px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid var(--border-color);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .nav-menu li a::after {
        display: none;
    }

    .hero {
        min-height: 60vh;
        padding: 60px 0;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .btn-large {
        padding: 12px 32px;
        font-size: 14px;
    }

    .hero-buttons {
        gap: 12px;
        margin-top: 30px;
    }

    .contact-group {
        padding: 22px 25px;
    }

    .contact-number {
        font-size: 18px;
    }

    .contact-actions {
        gap: 8px;
    }

    .contact-btn-small {
        font-size: 12px;
        padding: 9px 14px;
    }

    .section-title {
        font-size: 28px;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }

    .lightbox-close {
        right: 20px;
        font-size: 32px;
    }

    .lightbox-nav button {
        font-size: 20px;
        padding: 15px 10px;
    }

    .container {
        padding: 0 20px;
    }

    .logo span {
        font-size: 14px;
    }

    .logo img {
        height: 65px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 40px 0 50px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .btn-large {
        padding: 11px 24px;
        font-size: 13px;
    }

    .hero-buttons {
        gap: 10px;
        margin-top: 25px;
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn-large {
        width: 100%;
        max-width: 300px;
    }

    /* Proyectos destacados - 2 columnas en móvil pequeño para verse más profesional */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        margin-left: 0;
        margin-top: -1px;
    }

    .filter-btn:first-child {
        margin-top: 0;
    }

    .filter-btn.active {
        border-right: 1px solid var(--hover-color) !important;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 50px 0 30px;
    padding: 0 20px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
}

.pagination-btn:hover {
    background: var(--light-bg);
    border-color: var(--hover-color);
    color: var(--hover-color);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

.pagination-number:hover {
    background: var(--light-bg);
    border-color: var(--hover-color);
    color: var(--hover-color);
}

.pagination-number.active {
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: var(--white);
}

.pagination-dots {
    padding: 0 8px;
    color: var(--text-light);
    font-size: 14px;
}

/* Pagination responsive */
@media (max-width: 768px) {
    .pagination {
        gap: 8px;
        margin: 40px 0 20px;
    }

    .pagination-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .pagination-btn span {
        display: none;
    }

    .pagination-number {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 6px;
    }

    .pagination-btn {
        padding: 8px 12px;
    }

    .pagination-number {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }

    .pagination-dots {
        padding: 0 4px;
        font-size: 12px;
    }
}

/* Remove all animations for minimalist feel */
@keyframes fadeInUp,
@keyframes slowZoom,
@keyframes pulse,
@keyframes bounce,
@keyframes rotate,
@keyframes zoomIn {
    from, to {
        transform: none;
        opacity: 1;
    }
}
