/**
 * Maresport Company Info - Stili
 */

.maresport-company-info {
    padding: 40px 30px;
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.maresport-company-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

.maresport-company-name {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 168, 255, 0.3);
}

.maresport-company-location {
    font-size: 1.2em;
    color: #cccccc;
    margin: 0;
}

.location-icon {
    margin-right: 5px;
}

/* Sezioni */
.maresport-strengths-section,
.maresport-services-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2em;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00a8ff);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

/* Griglia Punti di Forza */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.strength-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
    border-color: #0066cc;
    background: linear-gradient(135deg, #1f1f1f 0%, #121212 100%);
}

.strength-icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.strength-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.strength-description {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Blocchi Servizi - 2 Colonne */
.maresport-services-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.maresport-services-section .section-title {
    grid-column: 1 / -1;
}

.service-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.service-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.3);
    border-color: #0066cc;
}

.service-block.yamaha-section {
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0505 100%);
    border-left: 4px solid #d71920;
}

.service-block.yamaha-section:hover {
    box-shadow: 0 6px 20px rgba(215, 25, 32, 0.4);
}

.service-block.aftersales-section {
    background: linear-gradient(135deg, #0a1a0a 0%, #050d05 100%);
    border-left: 4px solid #28a745;
}

.service-block.aftersales-section:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 2.5em;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.service-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.service-description {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 0.95em;
    color: #b8b8b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

/* CTA */
.maresport-contact-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 10px;
    color: white;
}

.cta-text {
    font-size: 1.3em;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #0066cc;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #003d7a;
}

/* Stile Minimal */
.maresport-style-minimal {
    padding: 20px;
    box-shadow: none;
}

.maresport-style-minimal .strengths-grid {
    gap: 15px;
}

.maresport-style-minimal .strength-item {
    padding: 20px 15px;
}

/* Stile Full */
.maresport-style-full {
    padding: 60px 40px;
}

.maresport-style-full .section-title {
    font-size: 2.5em;
}

/* Responsive */
@media (max-width: 992px) {
    .maresport-services-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-block {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .maresport-company-info {
        padding: 30px 20px;
    }
    
    .maresport-company-name {
        font-size: 1.8em;
    }
    
    .section-title {
        font-size: 1.5em;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .maresport-services-section {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: row;
        align-items: center;
    }
    
    .service-icon {
        margin-right: 10px;
        font-size: 2em;
    }
    
    .service-title {
        font-size: 1.2em;
    }
    
    .service-description {
        font-size: 0.95em;
    }
    
    .service-features li {
        font-size: 0.9em;
        padding: 6px 0;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .maresport-company-info {
        padding: 20px 15px;
    }
    
    .maresport-company-name {
        font-size: 1.5em;
    }
    
    .maresport-company-location {
        font-size: 1em;
    }
    
    .section-title {
        font-size: 1.3em;
    }
    
    .strength-item {
        padding: 20px 15px;
    }
    
    .strength-icon {
        font-size: 2.5em;
    }
    
    .strength-title {
        font-size: 1.1em;
    }
    
    .strength-description {
        font-size: 0.9em;
    }
    
    .service-block {
        padding: 15px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 2em;
    }
    
    .service-title {
        font-size: 1.1em;
    }
    
    .maresport-contact-cta {
        padding: 30px 15px;
    }
    
    .cta-text {
        font-size: 1.1em;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.95em;
    }
}
