/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0066B3 0%, #1d4ed8 100%);
    color: white;
    padding: 100px 0 70px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #0f70b7;
}

.intro-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Sede Cards */
.sede-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sede-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sede-card:last-child {
    margin-bottom: 0;
}

/* Sede Info */
.sede-info {
    padding: 20px;
}

.sede-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sede-legale {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
}

.sede-amministrativa {
    background: linear-gradient(135deg, #0066B3 0%, #1d4ed8 100%);
    color: white;
}

.sede-operativa {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.sede-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f70b7;
    margin-bottom: 20px;
}

.sede-details {
    margin: 20px 0;
}

.sede-details p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.sede-details i {
    color: #f97316;
    margin-right: 12px;
    width: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.btn-directions {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-directions:hover {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
    color: white;
    text-decoration: none;
}

.btn-directions i {
    margin-right: 8px;
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Overall Map */
.overall-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #0066B3 0%, #1d4ed8 100%);
    color: white;
}

.contact-cta .section-title {
    color: white;
}

.btn-contact {
    background-color: #f97316;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #f97316;
}

.btn-contact:hover {
    background-color: white;
    color: #f97316;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}

.btn-contact i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .sede-card {
        padding: 30px;
    }
    
    .sede-title {
        font-size: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sede-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .sede-title {
        font-size: 1.3rem;
    }
    
    .sede-details p {
        font-size: 0.95rem;
    }
    
    .map-container {
        height: 250px;
        margin-top: 20px;
    }
    
    .overall-map iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .sede-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .btn-directions,
    .btn-contact {
        width: 100%;
        text-align: center;
    }
}

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-image img {
    border-radius: 2px;
    box-shadow: var(--shadow);
    width: 100%;
}