/* Organization Page Specific Styles */

.organization-section {
    padding: 80px 0;
}

.organization-section:nth-child(even) {
    background: #f8f9fa;
}

.organization-section:nth-child(odd) {
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center !important;
    margin-bottom: 50px;
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 16px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

.block-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

.block-intro p {
    margin-bottom: 20px;
}

.block-intro ul {
    margin: 20px 0;
    padding-left: 30px;
}

.block-intro li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.highlight-text {
    background: linear-gradient(135deg, #e3f0ff 0%, #cce5ff 100%);
    padding: 20px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
    color: var(--primary-dark);
    margin: 30px 0;
}

/* Leadership Section */
.leadership-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.leadership-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.leader-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 137, 208, 0.15);
}

.leader-photo {
    margin-bottom: 20px;
}

.photo-placeholder {
    width: 150px;
    height: 180px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e3f0ff 0%, #cce5ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    position: relative;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 9px;
}

.leader-info {
    text-align: center;
}

.leader-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.leader-name {
    font-size: 1.1rem;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.leadership-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.leadership-group {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.group-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.leadership-group:last-child .leader-grid {
    grid-template-columns: repeat(2, 1fr);
}

.leadership-group:last-child .leader-card {
    padding: 25px;
}

.leadership-group:last-child .photo-placeholder {
    width: 120px;
    height: 150px;
    font-size: 2.5rem;
}

/* Office Section */
.office-section {
    background: #ffffff;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.department-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 137, 208, 0.2);
    border-color: var(--primary-color);
}

.department-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1ab0fb 0%, #1B3A70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.department-name {
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Production Section */
.production-section {
    background: #f8f9fa;
}

.water-plant-list {
    margin-top: 40px;
}

.list-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.plant-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.plant-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 137, 208, 0.15);
}

.plant-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plant-name {
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* Business Section */
.business-section {
    background: #ffffff;
}

.business-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.business-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 137, 208, 0.2);
    border-color: var(--primary-color);
}

.business-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.business-name {
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Auxiliary Section */
.auxiliary-section {
    background: #f8f9fa;
}

.auxiliary-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.auxiliary-item {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.auxiliary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 137, 208, 0.2);
    border-color: var(--primary-color);
}

.auxiliary-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.auxiliary-name {
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leadership-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .department-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .leadership-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leadership-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leader-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-group:last-child .leader-grid {
        grid-template-columns: 1fr;
    }
    
    .department-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .auxiliary-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .organization-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-intro,
    .block-intro {
        font-size: 1rem;
    }
    
    .leadership-row {
        grid-template-columns: 1fr;
    }
    
    .leader-card {
        padding: 25px 20px;
    }
    
    .photo-placeholder {
        width: 120px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    .leadership-group {
        padding: 30px 20px;
    }
    
    .leader-grid {
        grid-template-columns: 1fr;
    }
    
    .department-grid {
        grid-template-columns: 1fr;
    }
    
    .plant-grid {
        grid-template-columns: 1fr;
    }
    
    .business-list {
        grid-template-columns: 1fr;
    }
    
    .auxiliary-list {
        grid-template-columns: 1fr;
    }
    
    .highlight-text {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .leader-title {
        font-size: 0.9rem;
    }
    
    .leader-name {
        font-size: 1rem;
    }
    
    .department-name,
    .plant-name,
    .business-name,
    .auxiliary-name {
        font-size: 0.95rem;
    }
}

