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

html {
    scroll-behavior: smooth;
}

:root {
    --gold: #C9A961;
    --gold-light: #E5D4A6;
    --gold-dark: #A68B4A;
    --black: #0A0A0A;
    --black-soft: #1C1C1C;
    --charcoal: #2C2C2C;
    --white: #FAFAFA;
    --cream: #F5F1E8;
    --gray-light: #E8E8E8;
    --gray-medium: #CCCCCC;
    --gray-dark: #4A4A4A;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.2), 0 10px 10px -5px rgb(0 0 0 / 0.1);
    --shadow-gold: 0 8px 30px rgba(201, 169, 97, 0.15);
    --shadow-subtle: 0 2px 15px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--white);
    background: var(--black);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.main-header {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid rgba(184, 134, 11, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.header-logo-img {
    height: 130px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.header-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: var(--gold);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.coming-soon-container {
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.logo-container {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    opacity: 0.95;
}

.coming-soon-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--gold);
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(201, 169, 97, 0.2);
    position: relative;
    z-index: 1;
}

.coming-soon-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray-light);
    margin-bottom: 4rem;
    opacity: 0.85;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.value-proposition {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-5px);
}

.value-item:hover::before {
    opacity: 1;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.value-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.value-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.value-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.cta-hero {
    margin: 4rem 0;
    text-align: center;
}

.btn-hero-contact {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3.5rem;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-hero-contact:hover::before {
    left: 0;
}

.btn-hero-contact:hover {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.25);
}

.btn-hero-contact i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-hero-contact:hover i {
    transform: translateX(3px);
}

.content-section {
    background: transparent;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    padding: 5rem 3rem;
    margin-bottom: 0;
    text-align: left;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    margin-top: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
}

.section-heading:first-child {
    margin-top: 0;
}

.section-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(184, 134, 11, 0.05);
    border-color: rgba(184, 134, 11, 0.4);
}

.service-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    opacity: 0.75;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefits-list li {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
    opacity: 0.85;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.8;
}

.obra-nueva-section {
    background: rgba(184, 134, 11, 0.03);
    border: 2px solid rgba(184, 134, 11, 0.4);
}

.location-subsection {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.25);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.location-subsection:last-of-type {
    margin-bottom: 2.5rem;
}

.location-title {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-title i {
    font-size: 1.8rem;
    opacity: 0.9;
}

.location-description {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.85;
    font-style: italic;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.project-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 0;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.project-card:hover {
    background: rgba(184, 134, 11, 0.08);
    border-color: rgba(184, 134, 11, 0.6);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.project-slider {
    width: 100%;
    margin-bottom: 1.5rem;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.slider-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(184, 134, 11, 0.8);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    padding: 1rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(184, 134, 11, 1);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--gold);
    width: 12px;
    height: 12px;
}

.project-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.project-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 2rem;
}

.project-card p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.8;
    padding: 0 2rem;
}

.project-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 4px;
    margin: 0;
}

.project-status i {
    color: var(--gold);
    font-size: 0.9rem;
}

.project-status span {
    font-size: 0.85rem;
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

.project-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    margin-top: 1rem;
}

.project-download-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.project-download-btn i {
    font-size: 1.1rem;
}

.project-download-btn span {
    font-weight: 500;
}

.obra-nueva-cta {
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 2rem;
    text-align: center;
}

.obra-nueva-cta p {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.9;
}

.obra-nueva-cta p:last-child {
    margin-bottom: 0;
}

.obra-nueva-cta i {
    color: var(--gold);
    margin-right: 0.5rem;
    opacity: 0.9;
}

.cta-contact {
    margin-top: 1.5rem;
    font-size: 1.1rem !important;
    color: var(--gold) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.obra-nueva-preview {
    background: rgba(184, 134, 11, 0.03);
    border: 2px solid rgba(184, 134, 11, 0.4);
}

.obra-nueva-highlight {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.highlight-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.obra-nueva-highlight h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.obra-nueva-highlight p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.85;
}

.highlight-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    display: inline-block;
    text-align: left;
}

.highlight-features li {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.85;
}

.highlight-features li i {
    color: var(--gold);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.btn-obra-nueva {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-obra-nueva:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-obra-nueva i {
    margin-left: 0.75rem;
}

.obra-nueva-page {
    min-height: 100vh;
    background: var(--black);
}

.page-header {
    background: rgba(184, 134, 11, 0.05);
    border-bottom: 2px solid rgba(184, 134, 11, 0.4);
    padding: 2rem;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.back-link {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--gold-light);
}

.back-link i {
    margin-right: 0.5rem;
}

.header-logo {
    max-width: 250px;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.header-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    font-family: 'Arial', sans-serif;
    opacity: 0.85;
}

.obra-nueva-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.location-section {
    margin-bottom: 4rem;
}

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

.location-main-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.location-main-title i {
    font-size: 2.2rem;
}

.location-main-description {
    font-size: 1.1rem;
    color: var(--white);
    font-family: 'Arial', sans-serif;
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto;
}

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

.obra-nueva-cta-page {
    background: rgba(184, 134, 11, 0.08);
    border: 2px solid rgba(184, 134, 11, 0.4);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.obra-nueva-cta-page p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.9;
}

.obra-nueva-cta-page i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.contact-form-section {
    background: rgba(184, 134, 11, 0.03);
    border: 2px solid rgba(184, 134, 11, 0.4);
}

.contact-form-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.contact-form {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 2.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--gold);
}

.checkbox-label span {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.form-link {
    color: var(--gold);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.form-link:hover {
    color: var(--gold-light);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 1.2rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
    display: block;
}

.contact-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 0 3rem;
}

.contact-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 40px;
    text-align: left;
}

.contact-detail-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-detail-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.contact-detail-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-item a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--gold);
}

.map-container {
    width: 100%;
    height: 450px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.contact-info {
    display: none;
}

.contact-item-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.contact-item-link:hover .contact-item {
    background: rgba(184, 134, 11, 0.05);
    border-color: rgba(184, 134, 11, 0.6);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
    opacity: 0.8;
}

.contact-icon i {
    color: var(--gold);
}

.contact-details h3 {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-details p {
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.footer-minimal {
    position: relative;
    text-align: center;
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(184, 134, 11, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-small {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-copyright {
    opacity: 0.7;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-separator {
    color: var(--white);
    opacity: 0.5;
    font-size: 0.85rem;
}

.legal-page {
    min-height: 100vh;
    background: var(--black);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.legal-section p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.9;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.legal-section ul li {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.9;
    padding-left: 1.5rem;
    position: relative;
}

.legal-section ul li:before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-link {
    color: var(--gold);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--gold-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    border-top: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.cookie-text i {
    color: var(--gold);
    font-size: 2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cookie-text p {
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--gold-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-cookie.accept {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-cookie.accept:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

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

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

@media (max-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-proposition {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .location-subsection {
        padding: 2rem;
    }
    
    .back-link {
        position: static;
        transform: none;
        display: block;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-logo {
        max-width: 280px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .value-item i {
        font-size: 2.5rem;
    }
    
    .value-item h3 {
        font-size: 1rem;
    }
    
    .value-item p {
        font-size: 0.85rem;
    }
    
    .cta-hero {
        margin: 2rem 0;
    }
    
    .btn-hero-contact {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .header-container {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }
    
    .header-logo-img {
        height: 60px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-social {
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .contact-map-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-details-grid {
        gap: 1.5rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
    }
    
    .header-logo-img {
        height: 50px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        margin: 1.5rem auto 0;
    }
    
    .footer-minimal {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .footer-logo-small {
        height: 50px;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text i {
        font-size: 1.5rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .project-card {
        padding: 0;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .project-icon {
        font-size: 2.5rem;
    }
    
    .project-card h3 {
        font-size: 1.2rem;
        padding: 0 1.5rem;
    }
    
    .project-card p {
        padding: 0 1.5rem;
    }
    
    .project-status {
        margin: 0;
    }
    
    .project-download-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .project-download-btn i {
        font-size: 1rem;
    }
    
    .slider-btn {
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
    }
    
    .location-subsection {
        padding: 1.5rem;
    }
    
    .location-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .location-title i {
        font-size: 2rem;
    }
    
    .location-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .obra-nueva-cta {
        padding: 1.5rem;
    }
    
    .projects-grid-full {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .header-logo {
        max-width: 200px;
    }
    
    .location-main-title {
        font-size: 1.5rem;
        flex-direction: column;
    }
    
    .obra-nueva-highlight {
        padding: 2rem 1.5rem;
    }
    
    .obra-nueva-highlight h3 {
        font-size: 1.5rem;
    }
    
    .btn-obra-nueva {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 3rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
}
