:root {
    --primary-color: #FF0054;
    --text-color-white: #ffffff;
    --text-color-dark: #333333;
    --font-titles: 'Barlow', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color-dark);
    overflow-x: hidden;
}

/* Header */
.main-header {
    background-color: transparent;
    color: var(--text-color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Ensure space description */
    padding: 0 40px;
    height: var(--header-height);
    width: 100%;
    position: absolute;
    /* Overlay on hero */
    top: 0;
    left: 0;
    z-index: 1000;
    z-index: 1000;
}

/* Corporate Color Bars */
.corporate-bar {
    background-color: var(--primary-color);
    width: 100%;
}

.corporate-bar-top {
    height: 40px;
}

.corporate-bar-bottom {
    height: 10px;
}

@media (max-width: 768px) {
    .corporate-bar-top {
        height: 20px;
    }

    .corporate-bar-bottom {
        height: 5px;
    }
}

/* Solid Header Variant for internal pages */
.main-header.solid {
    position: relative;
    /* Not overlay */
    background-color: var(--primary-color);
    /* Corporate Red */
    height: 60px;
    /* "Pequeña" / Smaller height */
    box-shadow: none;
}

.main-header.solid .logo {
    font-size: 1.5rem;
    /* Slightly smaller logo */
}

.logo {
    font-family: var(--font-titles);
    /* Titles font for logo */
    font-weight: 800;
    /* Heavier weight for impact */
    font-size: 1.8rem;
    letter-spacing: 1px;
    /* margin-right: 40px;  Removed fixed margin, using justify-content */
    white-space: nowrap;
}

.main-nav {
    margin-left: auto;
    /* Removed margin-right: 100px so Contacto aligns with edge */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
    /* Handle smaller screens gracefully */
}

.main-nav a {
    color: var(--text-color-white);
    font-family: 'Barlow', sans-serif !important;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

/* Contact Button Styling */
.nav-contact-btn {
    background-color: #000;
    color: white !important;
    /* Ensure white text */
    padding: 10px 20px;
    border-radius: 8px;
    /* Rounded corners */
    transition: background-color 0.3s ease;
}

.nav-contact-btn:hover {
    background-color: #333;
}

/* Separate Contact item */
.main-nav ul li:last-child {
    margin-left: 110px;
    /* Reduced gap to move left items right */
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    /* Increased for 3 bars */
    cursor: pointer;
    z-index: 2000;
    /* Super high z-index */
    position: relative;
    /* Above mobile menu overlay */
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
    }

    .main-nav {
        margin-right: 0;
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen */
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        /* Corporate Red */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
        /* Slide in */
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* Reset Contact Button and Margin for Mobile */
    .nav-contact-btn {
        background-color: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .main-nav ul li:last-child {
        margin-left: 0 !important;
    }

    .main-nav a {
        font-size: 1.5rem;

        /* Larger links for mobile */
        .main-nav a {
            font-size: 1.5rem;
            /* Larger links for mobile */
        }

        /* Force header content to stay in a row */
        .main-header {
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: center;
        }
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height including behind header */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: var(--header-height);
    /* Add padding so content doesn't hide behind header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zoomEffect 20s infinite alternate ease-in-out;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-content {
    max-width: 1200px;
    text-align: left;
    /* Prompt doesn't specify alignment, center or left usually good. Lets go slightly left or center. */
    width: 100%;
    padding: 20px;
    position: relative; /* Context for absolute positioning of CTA button */
}

.hero-title {
    font-family: var(--font-titles);
    font-size: 4rem;
    /* Slightly larger for Newsreader */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-title span {
    color: white;
    /* Reduced padding since background is gone, but keeping line-height if needed */
    line-height: 1.6;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: white;
    font-size: 1.2rem;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    /* Add contrast specifically for subtitle if needed, or text-shadow */
    padding: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    /* margin-top: 30px; Removed for absolute positioning */
    box-shadow: 0 4px 15px rgba(255, 0, 84, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Reposition to top right */
    position: absolute;
    top: 0;
    right: 20px;
    
    overflow: hidden;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 84, 0.6);
    background-color: white;
    color: var(--primary-color);
}

/* Products Section */
.products-section {
    padding: 60px 8%;
    text-align: center;
    background-color: #f9f9f9;
}

.section-title {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 50px;
    font-weight: 700;
    /* Bold serif */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-title {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    /* Larger for readability */
    font-family: var(--font-titles);
    color: #000;
    font-weight: 700;
}

.product-desc {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.product-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    margin: 0 20px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-end;
}

.product-btn:hover {
    background-color: #d90047;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 20px 8%;
    background-color: white;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-choose-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.visual-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.equation-item {
    flex: 0 0 auto;
    max-width: 150px;
}

.equation-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.equation-symbol {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.why-choose-right {
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}

.feature-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .logo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .main-nav ul {
        justify-content: center;
        gap: 15px;
    }

    .hero-section {
        height: auto;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta-btn {
        position: static; /* Reset to static flow on mobile */
        display: inline-block;
        margin-top: 20px;
        width: 100%; /* Optional: full width on very small screens? Or just inline-block centered? */
        text-align: center;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-title {
        font-size: 1.8rem;
    }

    .equation-item {
        max-width: 100px;
    }

    .equation-symbol {
        font-size: 2rem;
    }

    .why-choose-right {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Works Section */
.works-section {
    padding: 60px 0;
    background-color: #111;
    text-align: center;
    color: white;
}

.slider-container {
    position: relative;
    height: 350px;
    /* Reduced height */
    width: 100%;
    /* Full width */
    margin: 0 auto;
    max-width: 100%;
    padding: 0 60px;
    /* Space for buttons */
}

.slider-track-container {
    background-color: transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    display: flex;
    /* Use flexbox */
    transition: transform 500ms ease-in-out;
}

.slide {
    min-width: 25%;
    /* Show 4 items by default */
    height: 100%;
    padding: 0 10px;
    /* Gap between images */
    box-sizing: border-box;
    position: relative;
    /* Reset position absolute from previous implementation */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    /* Optional styling */
    transition: transform 0.3s;
}

.slide:hover img {
    transform: scale(1.03);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 84, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 0, 84, 1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .slide {
        min-width: 33.333%;
        /* 3 items */
    }
}

@media (max-width: 900px) {
    .slide {
        min-width: 50%;
        /* 2 items */
    }

    .slider-container {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .slide {
        min-width: 100%;
        /* 1 item */
    }

    .slider-container {
        height: 250px;
        padding: 0 40px;
    }
}

.is-hidden {
    opacity: 0.3;
    pointer-events: none;
}

/* Fabricación Section */
.fabricacion-section {
    width: 100%;
    /* Add padding to create space on left/right as requested */
    padding: 20px 5%;
    background-color: white;
    /* Changed to white because the container inside will probably be the gray block now? */
    /* Actually, user said "background gray" before. If I restrain the container, maybe the section bg is white and the container is gray/image. 
       Let's assume the gray bg belongs to the content block. 
       Wait, the reference had a split. 
       If I make it boxed, the whole block (gray text + image) should be centered. 
    */
    display: flex;
    justify-content: center;
}

.fab-container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    max-width: 1300px;
    /* Constrain width so image doesn't touch edge */
    margin: 0 auto;
    align-items: stretch;
    height: 350px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    /* Optional: nice touch for boxed elements */
}

.fab-content {
    flex: 1;
    background-color: #f0f0f0;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-width: 400px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.fab-image-container {
    flex: 0 0 350px;
    width: 350px;
    /* Square, matching container height */
    position: relative;
    height: 100%;
    overflow: hidden;
}

.fab-image-container img,
.fab-image-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fab-text-wrapper {
    max-width: 100%;
}

.fab-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    display: block;
    line-height: 1.3;
}

/* Removed ::before dash ("flecha de la izquierda") */

.fab-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    /* Removed padding-left since dash is gone */
}

/* Floating Title Card */
.fab-floating-title {
    position: absolute;
    top: 30px;
    left: 42%;
    transform: translateX(-40%);
    background-color: rgba(255, 255, 255, 0.5);
    /* 50% transparency */
    backdrop-filter: blur(5px);
    /* Optional: adds to the volume/glass effect */
    padding: 15px 40px;
    /* contour shadow for volume */
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    z-index: 10;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Subtle border for definition */
}

.fab-floating-title h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Arrow styles removed */

@media (max-width: 1100px) {
    .fabricacion-section {
        padding: 40px 20px;
    }

    .fab-container {
        height: auto;
        flex-direction: column;
    }

    .fab-floating-title {
        position: relative;
        left: auto;
        transform: none;
        top: 0;
        width: 100%;
        text-align: center;
        padding: 20px;
        box-shadow: none;
        border-bottom: 1px solid #eee;
    }

    .fab-floating-title h2 {
        font-size: 1.8rem;
    }

    .fab-content {
        padding: 40px 20px;
    }

    .fab-image-container {
        min-height: 250px;
        height: 250px;
        width: 100%;
    }

    .fab-subtitle {
        text-align: center;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 60px 20px;
    background-color: white;
    /* Outer background white */
    display: flex;
    justify-content: center;
}

/* The Card Container */
.cta-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /* Vibrant Red Gradient */
    background: linear-gradient(135deg, #FF0054 0%, #990033 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 0, 84, 0.4);
    padding: 25px 30px;
    /* Reduced vertical padding */
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative line relative to container now */
.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: white;
    /* Changed to white */
}

.cta-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    color: #fce4ec;
    /* Light pinkish white for readability on red */
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.btn-primary {
    background-color: white;
    /* Inverted */
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.cta-btn.btn-primary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-5px);
}

.cta-btn.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer Section */
.site-footer {
    /* Metallic/Silver gradient effect with volume */
    background: linear-gradient(to right, #000000 0%, #1a1a1a 20%, #4a4a4a 50%, #1a1a1a 80%, #000000 100%);
    color: #fff;
    padding: 60px 0;
    font-family: var(--font-body);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.8);
    /* Inner shadow for depth */
    position: relative;
    border-top: 1px solid #333;
}

.site-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    /* Centered columns */
    flex-wrap: wrap;
    gap: 80px;
    /* Increased gap for better separation when centered */
    text-align: left;
    /* Keep text left aligned within columns, or center? Reference "Pon al centro las 2 columnas" usually means the block is centered. */
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-left .company-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-left .copyright {
    font-weight: 400;
    color: #888;
    margin-left: 5px;
}

.footer-phone {
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone:hover {
    color: var(--primary-color);
}

.footer-right .footer-link {
    font-size: 0.9rem;
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right .footer-link:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        /* Center on mobile */
        text-align: center;
    }
}

/* --- MONOPOSTES PAGE STYLES --- */

/* Intro */
/* Intro */
.monopostes-main {
    padding: 5px 40px 5px;
    max-width: 1200px;
    /* Force visual margins */
    margin: 0 auto;
}

.mp-intro {
    text-align: center;
    margin-bottom: 80px;
}

.mp-title {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.2;
}

.mp-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

/* Cards Grid */
.mp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    padding: 10px;
}

.mp-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mp-card:hover {
    transform: translateY(-5px);
}

.mp-card-image {
    height: 220px;
    background-color: #eee;
}

.mp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mp-card-content h3 {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}

.mp-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    flex: 1;
}

.mp-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.mp-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    flex: 1;
}

.mp-icon-item span {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.mp-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s;
}

.mp-btn:hover {
    background-color: #d10045;
}

/* Comparison Table */
.mp-table-section {
    margin-bottom: 80px;
}

.section-title.left-align {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    /* Outer shadow */
    border-radius: 15px;
    padding: 5px;
    margin: 20px 0;
    background-color: white;
    border: 1px solid #eee;
}

.mp-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.mp-table th,
.mp-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.mp-table th {
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    background-color: white;
}

/* Zebra Striping */
.mp-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.mp-table tbody tr:nth-child(odd) {
    background-color: white;
}

.mp-table td:first-child {
    font-weight: 700;
    color: #555;
    width: 25%;
}

.table-footer {
    padding-top: 20px;
    text-align: right;
}

.mp-btn.small {
    display: inline-block;
    width: auto;
    padding: 10px 30px;
    background-color: var(--primary-color);
    font-size: 0.9rem;
}

/* Quality Features */
.mp-quality {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.mp-quality h2 {
    font-family: var(--font-titles);
    font-size: 2rem;
    margin-bottom: 50px;
    color: #111;
}

.quality-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.quality-item .q-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #111;
}

.quality-item h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

/* --- MONOPOSTES URBANOS PAGE --- */
.urban-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 10px;
    /* Reduced to minimum */
}

@media (max-width: 768px) {
    .urban-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .urban-image {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* ... */


.urban-content {
    flex: 1;
}

.urban-title {
    font-family: var(--font-titles);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2c3e50;
    /* Dark blue/grey from image */
    margin-bottom: 10px;
}

.urban-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.urban-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.urban-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    /* Reduced space to button */
    margin-top: 10px;
    /* Minimal space from hero */
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.uf-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.uf-icon {
    font-size: 1.8rem;
    color: #444;
}

.uf-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #333;
}

.uf-text p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

.urban-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.urban-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Details Section */
.urban-details-wrapper {
    max-width: 100%;
    /* Fill the container to reduce side margins */
    margin: 0 auto 80px;
}

.urban-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Light shadow */
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.urban-detail-col {
    padding: 40px;
}

.urban-detail-col:first-child {
    border-right: 1px solid #e0e0e0;
    /* Soft gray instead of black */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    /* Very light shadow on the line/edge */
    z-index: 1;
    /* Ensure shadow sits on top */
    position: relative;
}

.urban-detail-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urban-detail-col ul {
    list-style: none;
    /* Custom or none? Text suggests bullets, let's use standard with padding */
    padding-left: 20px;
    margin: 0;
}

.urban-detail-col li {
    font-size: 0.9rem;
    /* Small text */
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
    /* Space for bullet if manual, or just standard */
}

/* Custom bullet */
.urban-detail-col li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

@media (max-width: 768px) {
    .urban-details-container {
        grid-template-columns: 1fr;
    }

    .urban-detail-col:first-child {
        border-right: none;
        border-bottom: 1px solid #000;
    }
}

.btn-solicitar {
    background-color: #ff0054;
    /* Bright pink/red */
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 0, 84, 0.3);
    transition: transform 0.3s;
}

.btn-solicitar:hover {
    transform: translateY(-2px);
    background-color: #d60045;
}

/* Feature Highlight Row */
.feature-highlight-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 100%;
}

.fhr-image {
    flex: 1;
}

.fhr-image img {
    width: 100%;
    height: 400px;
    /* Force shorter height */
    object-fit: cover;
    /* Crop instead of stretch */
    border-radius: 50px 0 50px 0;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.25);
    display: block;
}

.fhr-content {
    flex: 1.2;
}

.fhr-content h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.fhr-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fhr-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    color: #555;
    font-size: 0.95rem;
}

.fhr-content li::before {
    content: "✓";
    /* Checkmark */
    position: absolute;
    left: 0;
    color: #ff0054;
    /* Corporate Red */
    font-weight: bold;
}

.fhr-content strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 900px) {
    .feature-highlight-row {
        flex-direction: column;
    }
}

/* Urban Models Grid */
.urban-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Responsive 4 cols */
    gap: 30px;
    margin-bottom: 80px;
}

.urban-model-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    /* Reduced padding to give more width to image */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Subtle card shadow */
    text-align: center;
    border: 1px solid #f9f9f9;
    transition: transform 0.3s ease;
}

.urban-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.um-title {
    font-family: var(--font-titles);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    /* Black title */
    text-transform: uppercase;
}

.um-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/4.5;
    /* Increased height by another 20% (Total ~50% from base) */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    /* Placeholder bg */
}

.um-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the space */
}

.um-desc p {
    font-size: 0.75rem;
    /* Smaller text */
    color: #000;
    margin: 5px 0;
    line-height: 1.3;
}

.um-desc .um-specs {
    font-weight: 400;
    color: #000;
    font-size: 0.75rem;
    /* Consistent smaller size */
    margin-top: 5px;
    border-top: none;
    padding-top: 0;
}

/* Schematic Section */
.schematic-section {
    margin-bottom: 80px;
}

.schematic-wrapper {
    max-width: 720px;
    /* Reduced by 10% from 800px */
    margin: 0 auto;
    text-align: center;
}

.schematic-wrapper img {
    width: 100%;
    height: 300px;
    /* Doubled from 150px */
    object-fit: cover;
    border-radius: 0;
    /* Straight edges */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.schematic-wrapper {
    position: relative;
    /* Context for absolute positioning overlay */
}

.schematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    /* Slight darkening for readability */
}

.schematic-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-family: var(--font-titles);
    max-width: 90%;
}

.schematic-btn {
    background-color: #000;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    /* Rounded pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: transform 0.3s, background-color 0.3s;
}

.schematic-btn:hover {
    transform: scale(1.05);
    background-color: #333;
}

@media (max-width: 768px) {
    .schematic-text {
        font-size: 1.1rem;
        /* Smaller text on mobile */
    }

    .schematic-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .schematic-wrapper img {
        height: 250px;
        /* Slightly shorter on mobile if needed, or keep 300px. 300px is fine. */
    }
}

.Titulo01 {
    font-family: 'Barlow', sans-serif !important;
}

/* Article Section */
.article-section {
    padding: 15px 20%;
    /* 20% left/right margins, minimal top/bottom */
    background-color: white;
    margin-bottom: 20px;
}

.article-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 25px;
}

.article-image {
    margin-bottom: 25px;
    border-radius: 0;
    overflow: hidden;
}

.article-image img {
    border-radius: 0;
    width: 100%;
    height: auto;
    display: block;
}

.article-text {
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.article-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    /* Smaller than main title (2.5rem) */
    font-weight: 700;
    color: #111;
    margin-top: 40px;
    margin-bottom: 20px;
}




/* Advantages Section */
.advantages-section {
    padding: 40px 0;
    margin-top: 40px;
}

.advantages-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 40px;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 5%;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 20px;
}

.advantage-card-title {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    min-height: 3em;
}

.advantage-img-container {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
}

.advantage-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-text {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 768px) {
    .article-section {
        padding: 15px 5%;
        /* Reduce margins on mobile */
    }

    .article-title {
        font-size: 1.8rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* Empresa Section */
.empresa-main {
    padding-top: 40px;
    padding-bottom: 80px;
}

.empresa-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    /* Disctancia a los bordes */
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.empresa-text-col {
    flex: 1;
}

.empresa-image-col {
    flex: 1;
}

.empresa-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.2;
}

.empresa-content p {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.empresa-img-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industrial-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    /* Semibold */
    font-size: 2rem;
    color: #111;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.empresa-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .empresa-container {
        flex-direction: column;
        gap: 40px;
    }

    .empresa-title {
        font-size: 2rem;
    }
}

/* Empresa Gallery */
.empresa-gallery {
    padding-bottom: 40px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    /* Standard photo ratio */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    /* Subtle zoom effect */
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}


/* Fotos Varias Page */
.fotos-main {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.foto-urbana {
    width: 40%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .foto-urbana {
        width: 90%;
    }
}

/* Empresa Video Section */
.empresa-video {
    padding-bottom: 80px;
    width: 100%;
}

.empresa-video-container {
    width: 50%;
    /* 25% margin on each side = 50% width */
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.empresa-video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .empresa-video-container {
        width: 90%;
        /* Responsive width for mobile */
    }

}


/* Empresa Banner Section */
.empresa-banner {
    padding-bottom: 80px;
    width: 100%;
}

.banner-box {
    width: 40%;
    margin: 0 auto;
    aspect-ratio: 4 / 1;
    /* "Mitad de alto" -> Width * 0.5 = Height */
    background: radial-gradient(circle at center, #FF0054 0%, #990033 100%);
    /* Corporate Gradient */
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(153, 0, 51, 0.3);
}

.banner-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-reasons {
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
}

.banner-reasons p {
    margin: 5px 0;
}

.banner-btn {
    display: inline-block;
    background-color: white;
    color: #990033;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-body);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .banner-box {
        width: 80%;
        /* Wider on tablet */
        aspect-ratio: auto;
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .banner-box {
        width: 90%;
        /* Wider on mobile */
    }

    .banner-title {
        font-size: 1.5rem;
    }
}

/* Industrial Capacity Section */
.industrial-wrapper {
    width: 100%;
    margin-bottom: 80px;
}

.industrial-title-container {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 5%;
}

.industrial-title-container h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.industrial-row {
    width: 100%;
    background: radial-gradient(circle, rgba(60, 60, 60, 1) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 20px 5% 40px 5%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.industrial-item {
    flex: 1;
    min-width: 250px;
}

.industrial-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* "muy poco" */
    border: 2px solid white;
    /* "línea blanca de 2 px" */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    /* "pequeña sombra" */
    transition: transform 0.3s ease;
}

.industrial-item:hover img {
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .industrial-row {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .industrial-row {
        flex-direction: column;
    }

    .industrial-title-container h2 {
        font-size: 1.8rem;
    }
}

/* =========================================
   Trabajos Page Styles
   ========================================= */

.trabajos-section {
    padding: 60px 5% 60px;
    /* Reduced top padding to move title up */
    background-color: white;
    text-align: center;
}

.trabajos-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
}

.trabajos-subtitle {
    font-family: 'Mulish', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 50px;
}

.trabajos-grid-rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* Vertical gap between rows */
    max-width: 1400px;
    margin: 0 auto;
}

.trabajos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    /* Horizontal gap between items */
    width: 100%;

    /* Animation Initial State */
    opacity: 0;
    transform: translateX(-100px);
    /* Slide from left */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.trabajos-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.trabajos-item {
    width: 100%;
    /* Increase height by ~15-20% from 16/9. 3/2 is a good standard ratio that is taller. */
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    /* Straight edges */
}

.trabajos-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.trabajos-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .trabajos-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Brand Logo Text Styles */
.brand-logo-container {
    text-align: center;
    margin: 40px auto;
    padding-bottom: 20px;
}

.brand-logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    color: #000;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.brand-bold {
    font-weight: 800;
    /* Extra bold */
}

.brand-light {
    font-weight: 300;
    /* Light */
}

/* Header Specific Logo Styles */
.main-header .brand-logo-container {
    margin: 0;
    padding: 0;
    text-align: left;
}

.main-header .brand-logo-text {
    font-size: 1.8rem;
    color: var(--text-color-white);
    letter-spacing: 1px;
}

.main-header .brand-logo-img {
    height: 3.6rem;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-title {
        font-size: 2.5rem;
    }
}

/* Contact Page Styles (Dark Theme) */
.contact-hero {
    background-color: #0e1013;
    color: #ffffff;
    padding: 80px 20px;
    min-height: 80vh;
    /* Ensure it takes up good space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-family: 'Manrope', sans-serif;
    /* Or generic sans if preferred */
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF0054;
    line-height: 1.1;
    margin-bottom: 50px;
}

.contact-detail-group {
    margin-bottom: 30px;
}

.contact-label {
    font-family: 'Manrope', sans-serif;
    color: #FF0054;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.contact-value {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.5;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    border: 1px solid #FF0054;
    border-radius: 12px;
    padding: 40px;
    background-color: transparent;
}

.contact-form-group {
    margin-bottom: 30px;
}

.contact-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 10px 0;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.contact-input::placeholder {
    color: #888;
}

.contact-input:focus {
    border-bottom-color: #FF0054;
}

.contact-submit {
    background: linear-gradient(135deg, #FF0054 0%, #d40045 100%);
    border: none;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 30px;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 84, 0.3);
    width: auto;
    display: inline-block;
    letter-spacing: 1px;
}

.contact-submit:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 84, 0.5);
    background: linear-gradient(135deg, #ff1a66 0%, #e6004c 100%);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-title {
        font-size: 2.5rem;
    }
}

/* News Section Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.news-card {
    background-color: #f4f4f4;
    border-radius: 8px;
    /* Slight rounding based on image visual */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.news-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.05);
}

.news-content {
    padding: 30px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: 'Montserrat', sans-serif;
    /* Using consistent formatting font */
    color: #002b49;
    /* Dark blue from image estimation */
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
}

.news-excerpt {
    font-family: 'Mulish', sans-serif;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.news-read-more {
    font-family: 'Montserrat', sans-serif;
    color: #002b49;
    font-size: 0.9rem;
    font-weight: 600;
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Barlow', sans-serif;
    letter-spacing: 1px;
    display: inline-block;
}

.news-read-more:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Calculator Section */
.calculator-section {
    padding: 0 20% 60px;
    background-color: white;
    display: flex;
    justify-content: center;
}

.calculator-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Adjusted to 50/50 to make summary wider */
    gap: 40px;
}

/* Left Column - Form */
.calc-form-container {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.calc-title {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.form-desc {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.form-select,
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
    background-color: white;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #222;
    /* Black or primary */
}

/* Right Column - Summary */
.calc-summary-card {
    background-color: #fafafa;
    /* Light grey bg in card? Image shows white card with border/shadow or very light grey. */
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.summary-title {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    /* For optional arrow icon? */
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* or baseline */
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 4px;
}

.summary-row span:last-child {
    font-weight: 600;
    color: #333;
}

.total-section {
    margin-top: 25px;
    padding-top: 15px;
    /* Optional divider not clearly visible, or maybe just space */
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.total-label {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a2b3c;
}

.total-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a2b3c;
}

.calc-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 25px;
}

.btn-calc {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.btn-teal {
    background-color: #1abc9c;
    /* Adjust to match image teal */
    color: white;
}

.btn-grey {
    background-color: #e0e0e0;
    color: #333;
}

.btn-calc:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
}