/* POLPO Landing Page Styles */

/* Hero */
.polpo-hero {
    display: flex;
    min-height: 335px;
    max-height: 50vh;
    background: #f3f3f3;
    position: relative;
    overflow: hidden;
}

.polpo-hero-left {
    flex: 0.95;
    padding: 42px 36px 36px 68px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.polpo-breadcrumb {
    font-size: 11px;
    font-weight: 700;
    color: #8a8f8b;
    margin-bottom: 18px;
}

.polpo-hero-left h1 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.08;
    color: #111;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.polpo-hero-left h1 span {
    color: var(--primary-red);
}

.polpo-hero-desc {
    max-width: 430px;
    font-size: 13px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 28px;
}

.polpo-hero-btn {
    width: fit-content;
    padding: 16px 34px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    background: var(--primary-red);
    color: #fff;
}

.polpo-hero-right {
    flex: 1.35;
    position: relative;
    min-height: 335px;
}

.polpo-hero-img-wrapper {
    width: 100%;
    height: 100%;
    clip-path: polygon(12.5% 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
    position: relative;
}

.polpo-hero-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.polpo-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polpo-hero-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    clip-path: polygon(12% 0, 13.1% 0, 0.8% 100%, -0.2% 100%);
    z-index: 2;
}

.polpo-hero-floating-text {
    position: absolute;
    top: 20px;
    right: 34px;
    z-index: 3;
    text-align: right;
}

.polpo-hero-floating-text p {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    color: #222;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.polpo-hero-floating-text p:last-child {
    color: #444;
    margin-bottom: 0;
}

.bd-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bd-subtitle-main {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.bd-section-header h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.bd-title-line {
    width: 50px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* Gallery Section */
.bd-gallery-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.bd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bd-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bd-gallery-item:hover {
    transform: translateY(-10px);
}

.bd-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Features Section */
.bd-features-section {
    padding: 100px 0;
}

.bd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.bd-feature-item {
    text-align: center;
}

.bd-feature-icon {
    margin-bottom: 25px;
}

.bd-feature-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.bd-feature-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.bd-stats-bar {
    border-radius: 20px;
    padding: 60px 40px;
    margin: 80px 0;
}

.bd-stats-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.bd-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bd-stat-icon {
    flex-shrink: 0;
}

.bd-stat-info h3 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin: 0;
}

.bd-stat-info p {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.bd-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.bd-grow-bar {
    padding: 60px 0;
    margin-top: 80px;
}

.bd-grow-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.bd-grow-text h2 {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 10px 0;
}

.bd-grow-text p {
    font-size: 18px;
    margin: 0;
}

.bd-grow-btn {
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .polpo-hero-left {
        padding: 36px 24px 32px 34px;
    }

    .polpo-hero-left h1 {
        font-size: 32px;
    }

    .polpo-hero-floating-text {
        top: 18px;
        right: 22px;
    }

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

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

    .bd-stats-card {
        flex-wrap: wrap;
        gap: 40px;
    }

    .bd-stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .polpo-hero {
        flex-direction: column;
        min-height: auto;
        max-height: none;
        background: #f3f3f3;
    }

    .polpo-hero-left {
        padding: 32px 20px 28px;
    }

    .polpo-hero-left h1 {
        font-size: 30px;
    }

    .polpo-hero-right {
        min-height: 240px;
    }

    .polpo-hero-img-wrapper {
        clip-path: none;
    }

    .polpo-hero-divider,
    .polpo-hero-floating-text {
        display: none;
    }

    .bd-gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .bd-grow-flex {
        flex-direction: column;
        text-align: center;
    }

    .bd-stat-item {
        flex-direction: column;
        text-align: center;
    }

    .bd-section-header h2 {
        font-size: 32px;
    }
}
